This is a fork of the eval crate originally created by fengcen and then abandoned.
Evalexpr is a powerful expression evaluator.
Supported operators: !
!=
""
''
()
[]
,
>
<
>=
<=
==
+
-
*
/
%
&&
||
n..m
.
Built-in functions: min()
max()
len()
is_empty()
array()
converge()
.
See the builtin
module for a detailed description of each.
Add dependency to Cargo.toml
toml
[dependencies]
evalexpr = "0.4"
In your main.rs
or lib.rs
:
rust
extern crate evalexpr as eval;
You can do mathematical calculations with supported operators:
```rust use eval::{eval, to_value};
asserteq!(eval("1 + 2 + 3"), Ok(tovalue(6))); asserteq!(eval("2 * 2 + 3"), Ok(tovalue(7))); asserteq!(eval("2 / 2 + 3"), Ok(tovalue(4.0))); asserteq!(eval("2 / 2 + 3 / 3"), Ok(tovalue(2.0))); ```
You can eval with context:
```rust use eval::{Expr, to_value};
asserteq!(Expr::new("foo == bar") .value("foo", true) .value("bar", true) .exec(), Ok(tovalue(true))); ```
You can access data like javascript by using .
and []
. []
supports expression.
```rust use eval::{Expr, to_value}; use std::collections::HashMap;
let mut object = HashMap::new(); object.insert("foos", vec!["Hello", "world", "!"]);
asserteq!(Expr::new("object.foos[1-1] == 'Hello'") .value("object", object) .exec(), Ok(tovalue(true))); ```
You can eval with function:
```rust use eval::{Expr, to_value};
asserteq!(Expr::new("sayhello()") .function("sayhello", || Ok(tovalue("Hello world!"))) .exec(), Ok(tovalue("Hello world!"))); ```
You can create an array with array()
:
```rust use eval::{eval, to_value};
asserteq!(eval("array(1, 2, 3, 4, 5)"), Ok(tovalue(vec![1, 2, 3, 4, 5]))); ```
You can create an integer array with n..m
:
```rust use eval::{eval, to_value};
asserteq!(eval("0..5"), Ok(tovalue(vec![0, 1, 2, 3, 4]))); ```
evalexpr is primarily distributed under the terms of the MIT license. See LICENSE for details.