rsaeb 0.9.0

A no_std + alloc interpreter for A=B ordered rewrite programs.
Documentation
1
2
3
4
5
6
7
8
9
10
/// Canonical source generation from typed rule data.
mod canonical;
/// Parsed rule domain model.
mod model;

pub(crate) use canonical::canonical_source;
pub(crate) use model::{
    OnceRuleCount, ParsedRule, RewriteAction, Rule, RuleAction, RuleAnchorSyntax, RuleAvailability,
    RuleBody, RuleHead, RuleRepeatSyntax,
};