EString

Crates.io docs.rs GitHub Workflow Status The MSRV

toml [dependencies] estring = "0.1"

A simple way to parse a string using type annotations.

This package was originally designed for [enve].

Documentation

For more details, see [examples].

Usage

```rust use estring::{SepVec, EString};

type PlusVec = SepVec; type MulVec = SepVec;

fn main() -> estring::Result<()> { let res = EString::from("10+5*2+3") .parse::>>()? .iter() .map(|m| m.iter().product::()) .sum::();

assert_eq!(res, 23.0);
Ok(())

} ```

You can use custom types as annotations! Just implement estring::ParseFragment!

Contact Us

Join us in:

Matrix

License

MIT. See LICENSE to see the full text.

Contributors

pleshevskiy (Dmitriy Pleshevskiy) – creator, maintainer.