#expression-evaluator #eval #evaluate #context #value

v_eval

Expression evaluator with context

12 releases (6 breaking)

0.6.0 May 5, 2020
0.5.3 Apr 28, 2020
0.4.1 Apr 26, 2020
0.3.0 Apr 14, 2020
0.0.2 Mar 18, 2019

#11 in #eval

Download history 254/week @ 2024-06-14 222/week @ 2024-06-21 234/week @ 2024-06-28 161/week @ 2024-07-05 344/week @ 2024-07-12 254/week @ 2024-07-19 325/week @ 2024-07-26 202/week @ 2024-08-02 200/week @ 2024-08-09 220/week @ 2024-08-16 301/week @ 2024-08-23 215/week @ 2024-08-30 196/week @ 2024-09-06 185/week @ 2024-09-13 217/week @ 2024-09-20 216/week @ 2024-09-27

841 downloads per month
Used in 8 crates (via yarte_hir)

MIT/Apache

75KB
1.5K SLoC

v_eval Documentation Latest version

Expression evaluator with context

use v_eval::{Value, Eval};

fn main() -> Result<(), ()> {
    let e = Eval::default()
        .insert("foo", "true")?
        .insert("bar", "false")?;

    assert_eq!(e.eval("foo != bar").unwrap(), Value::Bool(true));
    assert_eq!(
        e.eval("true && foo != bar && true").unwrap(),
        Value::Bool(true)
    );
    assert_eq!(e.eval("1 == 1 != bar").unwrap(), Value::Bool(true));
    assert_eq!(e.eval("1 == 1 + 1 == bar").unwrap(), Value::Bool(true));
    
    Ok(())
}

Contributing

Please, contribute to v_eval! The more the better! Feel free to to open an issue and/or contacting directly with the owner for any request or suggestion.

Code of conduct

This Code of Conduct is adapted from the Contributor Covenant, version 1.4, available at http://contributor-covenant.org/version/1/4

License

This project is distributed under the terms of both the Apache License (Version 2.0) and the MIT license, specified in LICENSE-APACHE and LICENSE-MIT respectively.

Dependencies

~3.5–4.5MB
~90K SLoC