A simple way to parse a string using type annotations.
This repository has been archived on 2024-07-25. You can view files and clone it, but cannot push or open issues or pull requests.
Find a file
2022-07-28 12:19:56 +03:00
.github/workflows bump msrv 2022-07-25 13:31:13 +03:00
.vim . 2022-07-23 22:36:22 +03:00
examples core: add custom traits 2022-07-26 15:55:23 +00:00
src agg: add aggregatable trait 2022-07-28 12:19:56 +03:00
.gitignore chore: change repository 2022-07-23 23:02:15 +03:00
Cargo.lock agg: add draft logic for aggregation 2022-07-28 00:51:26 +03:00
Cargo.toml doc: update version in readme 2022-07-27 18:54:20 +03:00
LICENSE . 2022-07-23 22:36:22 +03:00
README.md doc: update version in readme 2022-07-27 18:54:20 +03:00

EString

Crates.io docs.rs GitHub Workflow Status The MSRV

[dependencies]
estring = "0.2"

A simple way to parse a string using type annotations.

This package was originally designed for enve.

Documentation

For more details, see examples.

Usage

use estring::{SepVec, EString};

type PlusVec<T> = SepVec<T, '+'>;
type MulVec<T> = SepVec<T, '*'>;

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

    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.