estring/README.md

95 lines
2.3 KiB
Markdown
Raw Permalink Normal View History

2022-07-23 22:36:22 +03:00
# EString
2022-07-24 00:04:09 +03:00
[![Crates.io](https://img.shields.io/crates/v/estring?style=flat-square)](https://crates.io/crates/estring)
2022-07-27 10:43:47 +03:00
[![docs.rs](https://img.shields.io/docsrs/estring?style=flat-square)](https://docs.rs/estring)
[![GitHub Workflow Status](https://img.shields.io/github/workflow/status/pleshevskiy/estring/CI?label=tests&logo=github&style=flat-square)](https://github.com/pleshevskiy/estring/actions/workflows/ci.yml)
![The MSRV](https://img.shields.io/badge/MSRV-1.59.0-red.svg)
```toml
[dependencies]
2022-07-28 14:36:45 +03:00
estring = "0.3"
2022-07-27 10:43:47 +03:00
```
2022-07-24 00:04:09 +03:00
2022-07-23 22:36:22 +03:00
A simple way to parse a string using type annotations.
2022-07-27 11:44:17 +03:00
This package was originally designed for [enve].
2022-07-23 22:36:22 +03:00
2022-07-24 23:22:57 +03:00
[enve]: https://github.com/pleshevskiy/enve
2022-07-23 22:36:22 +03:00
2022-07-27 11:44:17 +03:00
## [Documentation](https://docs.rs/estring)
For more details, see [examples].
[examples]: https://github.com/pleshevskiy/estring/tree/main/examples
## Usage
2022-07-23 22:36:22 +03:00
2022-07-28 14:28:09 +03:00
Basic
```rust
use estring::EString;
fn main() -> estring::Result<()> {
let res: i32 = EString::from("10").parse()?;
assert_eq!(res, 10);
Ok(())
}
```
You can use predefined structs like `SepVec` if you enable the `structs`
feature.
Note: You can use custom types as annotations! Just implement `ParseFragment`!
2022-07-23 22:36:22 +03:00
```rust
use estring::{SepVec, EString};
type PlusVec<T> = SepVec<T, '+'>;
type MulVec<T> = SepVec<T, '*'>;
2022-07-26 18:14:26 +03:00
fn main() -> estring::Result<()> {
2022-07-23 22:36:22 +03:00
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(())
}
```
2022-07-28 14:28:09 +03:00
You can also use predefined aggregators if you enable the `aggs` feature.
```rust
use estring::{Aggregate, EString, Product, SepVec, Sum};
type PlusVec<T> = SepVec<T, '+'>;
type MulVec<T> = SepVec<T, '*'>;
fn main() -> estring::Result<()> {
let res = EString::from("10+5*2+3")
.parse::<Sum<PlusVec<Product<MulVec<f32>>>>>()?
.agg();
assert_eq!(res, 23.0);
Ok(())
}
```
2022-07-23 22:36:22 +03:00
2022-07-27 10:43:47 +03:00
## Contact Us
2022-07-23 22:36:22 +03:00
2022-07-27 10:43:47 +03:00
Join us in:
2022-07-23 22:36:22 +03:00
2022-07-27 10:43:47 +03:00
[![Matrix](https://img.shields.io/badge/matrix-%23enve_team:matrix.org-blueviolet.svg?style=flat-square)](https://matrix.to/#/#enve_team:matrix.org)
2022-07-23 22:36:22 +03:00
## License
2022-07-23 23:02:15 +03:00
**MIT**. See [LICENSE](https://github.com/pleshevskiy/estring/LICENSE) to see
the full text.
2022-07-23 22:36:22 +03:00
## Contributors
[pleshevskiy](https://github.com/pleshevskiy) (Dmitriy Pleshevskiy) creator,
maintainer.