<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="FeedCreator 1.8" -->
<?xml-stylesheet href="https://relision.stacyprowell.com/lib/exe/css.php?s=feed" type="text/css"?>
<rdf:RDF
    xmlns="http://purl.org/rss/1.0/"
    xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
    xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
    xmlns:dc="http://purl.org/dc/elements/1.1/">
    <channel rdf:about="https://relision.stacyprowell.com/feed.php">
        <title>Relision - lib</title>
        <description>The Relision Term Rewriting Library</description>
        <link>https://relision.stacyprowell.com/</link>
        <image rdf:resource="https://relision.stacyprowell.com/lib/exe/fetch.php?media=wiki:logo.png" />
       <dc:date>2026-05-09T19:35:27+00:00</dc:date>
        <items>
            <rdf:Seq>
                <rdf:li rdf:resource="https://relision.stacyprowell.com/doku.php?id=lib:decoder&amp;rev=1546952958&amp;do=diff"/>
                <rdf:li rdf:resource="https://relision.stacyprowell.com/doku.php?id=lib:logging&amp;rev=1604881958&amp;do=diff"/>
                <rdf:li rdf:resource="https://relision.stacyprowell.com/doku.php?id=lib:parser&amp;rev=1546958536&amp;do=diff"/>
                <rdf:li rdf:resource="https://relision.stacyprowell.com/doku.php?id=lib:repl&amp;rev=1605500064&amp;do=diff"/>
            </rdf:Seq>
        </items>
    </channel>
    <image rdf:about="https://relision.stacyprowell.com/lib/exe/fetch.php?media=wiki:logo.png">
        <title>Relision</title>
        <link>https://relision.stacyprowell.com/</link>
        <url>https://relision.stacyprowell.com/lib/exe/fetch.php?media=wiki:logo.png</url>
    </image>
    <item rdf:about="https://relision.stacyprowell.com/doku.php?id=lib:decoder&amp;rev=1546952958&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2019-01-08T13:09:18+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>decoder</title>
        <link>https://relision.stacyprowell.com/doku.php?id=lib:decoder&amp;rev=1546952958&amp;do=diff</link>
        <description>Reading Character by Character

You can use the relision::decoder module to iterate through a stream character by character.  The decoder is based on the Encoding Standard and handles UTF-8 and UTF-16 little- and big-endian.

Using this is pretty simple.


use relision::decoder;

fn main() {
    // Copy the standard in to the standard out, one character at a time.
    let mut source = std::io::stdin();
    let decode = decoder::Decode::with_capacity(&amp;mut source, 16);
    for ch in decode {
     …</description>
    </item>
    <item rdf:about="https://relision.stacyprowell.com/doku.php?id=lib:logging&amp;rev=1604881958&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2020-11-09T00:32:38+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>logging</title>
        <link>https://relision.stacyprowell.com/doku.php?id=lib:logging&amp;rev=1604881958&amp;do=diff</link>
        <description>Logging

The Relision library supports logging using the log crate, configured via environment variables using the env_logger crate.

Enabling Logging

Logging is enabled using the RELISION_LOG environment variable.  You may specify a logging level for the entire library as follows:</description>
    </item>
    <item rdf:about="https://relision.stacyprowell.com/doku.php?id=lib:parser&amp;rev=1546958536&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2019-01-08T14:42:16+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>parser</title>
        <link>https://relision.stacyprowell.com/doku.php?id=lib:parser&amp;rev=1546958536&amp;do=diff</link>
        <description>Building Parsers

The relision::parser module provides very, very, very simple parser primitives for building recursive descent parsers.

The module provides three key structs and one specialized type.

	*  ParseError encapsulates a parse error
	*  Loc</description>
    </item>
    <item rdf:about="https://relision.stacyprowell.com/doku.php?id=lib:repl&amp;rev=1605500064&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2020-11-16T04:14:24+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>repl</title>
        <link>https://relision.stacyprowell.com/doku.php?id=lib:repl&amp;rev=1605500064&amp;do=diff</link>
        <description>Using the REPL

The Relision library provides a generic read, evaluate, print loop (a REPL) that is available through the `relision::repl::Repl` struct.  This provides the following services.

	*  Loading and saving of command history
	*  Reading lines from the prompt with history</description>
    </item>
</rdf:RDF>
