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-25 19:57:40 +00:00
.github/workflows bump msrv 2022-07-25 13:31:13 +03:00
.vim . 2022-07-23 22:36:22 +03:00
examples refac: restructure modules 2022-07-25 19:57:40 +00:00
src refac: restructure modules 2022-07-25 19:57:40 +00:00
.gitignore chore: change repository 2022-07-23 23:02:15 +03:00
Cargo.lock bump msrv 2022-07-25 13:31:13 +03:00
Cargo.toml refac: restructure modules 2022-07-25 19:57:40 +00:00
LICENSE . 2022-07-23 22:36:22 +03:00
README.md doc: add 2021 edition to installation section 2022-07-25 13:33:11 +03:00

EString

GitHub Workflow Status docs.rs Crates.io Crates.io unsafe forbidden Matrix

A simple way to parse a string using type annotations.

This package was originally designed for enve

Getting started

use estring::{SepVec, EString};

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

fn main() -> Result<(), estring::ParseError> {
    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 TryFrom<EString>!

Installation

The MSRV is 1.59.0

Add estring = { version = "0.1", features = ["vec", "number"] } as a dependency in Cargo.toml.

Cargo.toml example:

[package]
name = "my-crate"
version = "0.1.0"
edition = "2021"
authors = ["Me <user@rust-lang.org>"]

[dependencies]
estring = { version = "0.1", features = ["vec", "number"] }

License

MIT. See LICENSE to see the full text.

Contributors

pleshevskiy (Dmitriy Pleshevskiy) creator, maintainer.