xee_interpreter/stack/
mod.rs

1/// Values on the the interpreter stack. A value is either empty,
2/// a single item, or a sequence of items, or a special marker absent.
3/// The sequence module wraps around this to create a sequence API.
4mod comparison;
5mod value;
6
7pub use value::Value;