reqlang-expr 0.6.0

A tiny (bytecode compiled, stack VM interpreted) expression language for reqlang's templating engine.
Documentation
1
2
3
4
use std::ops::Range;

pub type Span = Range<usize>;
pub type Spanned<T> = (T, Span);