Struct Node

Source
pub struct Node<NumericTypes: EvalexprNumericTypes = DefaultNumericTypes> { /* private fields */ }
Expand description

A node in the operator tree. The operator tree is created by the crate-level build_operator_tree method. It can be evaluated for a given context with the Node::eval method.

The advantage of constructing the operator tree separately from the actual evaluation is that it can be evaluated arbitrarily often with different contexts.

§Examples

use evalexpr::*;

let mut context = HashMapContext::<DefaultNumericTypes>::new();
context.set_value("alpha".into(), Value::from_int(2)).unwrap(); // Do proper error handling here
let node = build_operator_tree("1 + alpha").unwrap(); // Do proper error handling here
assert_eq!(node.eval_with_context(&context), Ok(Value::from_int(3)));

Implementations§

Source§

impl<NumericTypes: EvalexprNumericTypes> Node<NumericTypes>

Source

pub fn iter(&self) -> impl Iterator<Item = &Node<NumericTypes>>

Returns an iterator over all nodes in this tree.

Source

pub fn iter_operators_mut( &mut self, ) -> impl Iterator<Item = &mut Operator<NumericTypes>>

Returns a mutable iterator over all operators in this tree.

Source§

impl<NumericTypes: EvalexprNumericTypes> Node<NumericTypes>

Source

pub fn iter_identifiers(&self) -> impl Iterator<Item = &str>

Returns an iterator over all identifiers in this expression. Each occurrence of an identifier is returned separately.

§Examples
use evalexpr::*;

let tree = build_operator_tree::<DefaultNumericTypes>("a + b + c * f()").unwrap(); // Do proper error handling here
let mut iter = tree.iter_identifiers();
assert_eq!(iter.next(), Some("a"));
assert_eq!(iter.next(), Some("b"));
assert_eq!(iter.next(), Some("c"));
assert_eq!(iter.next(), Some("f"));
assert_eq!(iter.next(), None);
Source

pub fn iter_identifiers_mut(&mut self) -> impl Iterator<Item = &mut String>

Returns an iterator over all identifiers in this expression, allowing mutation. Each occurrence of an identifier is returned separately.

§Examples
use evalexpr::*;

let mut tree = build_operator_tree::<DefaultNumericTypes>("a + b + c * f()").unwrap(); // Do proper error handling here

for identifier in tree.iter_identifiers_mut() {
    *identifier = String::from("x");
}

let mut iter = tree.iter_identifiers();

assert_eq!(iter.next(), Some("x"));
assert_eq!(iter.next(), Some("x"));
assert_eq!(iter.next(), Some("x"));
assert_eq!(iter.next(), Some("x"));
assert_eq!(iter.next(), None);
Source

pub fn iter_variable_identifiers(&self) -> impl Iterator<Item = &str>

Returns an iterator over all variable identifiers in this expression. Each occurrence of a variable identifier is returned separately.

§Examples
use evalexpr::*;

let tree = build_operator_tree::<DefaultNumericTypes>("a + f(b + c)").unwrap(); // Do proper error handling here
let mut iter = tree.iter_variable_identifiers();
assert_eq!(iter.next(), Some("a"));
assert_eq!(iter.next(), Some("b"));
assert_eq!(iter.next(), Some("c"));
assert_eq!(iter.next(), None);
Source

pub fn iter_variable_identifiers_mut( &mut self, ) -> impl Iterator<Item = &mut String>

Returns an iterator over all variable identifiers in this expression, allowing mutation. Each occurrence of a variable identifier is returned separately.

§Examples
use evalexpr::*;

let mut tree = build_operator_tree::<DefaultNumericTypes>("a + b + c * f()").unwrap(); // Do proper error handling here

for identifier in tree.iter_variable_identifiers_mut() {
    *identifier = String::from("x");
}

let mut iter = tree.iter_identifiers();

assert_eq!(iter.next(), Some("x"));
assert_eq!(iter.next(), Some("x"));
assert_eq!(iter.next(), Some("x"));
assert_eq!(iter.next(), Some("f"));
assert_eq!(iter.next(), None);
Source

pub fn iter_read_variable_identifiers(&self) -> impl Iterator<Item = &str>

Returns an iterator over all read variable identifiers in this expression. Each occurrence of a variable identifier is returned separately.

§Examples
use evalexpr::*;

let tree = build_operator_tree::<DefaultNumericTypes>("d = a + f(b + c)").unwrap(); // Do proper error handling here
let mut iter = tree.iter_read_variable_identifiers();
assert_eq!(iter.next(), Some("a"));
assert_eq!(iter.next(), Some("b"));
assert_eq!(iter.next(), Some("c"));
assert_eq!(iter.next(), None);
Source

pub fn iter_read_variable_identifiers_mut( &mut self, ) -> impl Iterator<Item = &mut String>

Returns an iterator over all read variable identifiers in this expression, allowing mutation. Each occurrence of a variable identifier is returned separately.

§Examples
use evalexpr::*;

let mut tree = build_operator_tree::<DefaultNumericTypes>("d = a + f(b + c)").unwrap(); // Do proper error handling here

for identifier in tree.iter_read_variable_identifiers_mut() {
    *identifier = String::from("x");
}

let mut iter = tree.iter_identifiers();

assert_eq!(iter.next(), Some("d"));
assert_eq!(iter.next(), Some("x"));
assert_eq!(iter.next(), Some("f"));
assert_eq!(iter.next(), Some("x"));
assert_eq!(iter.next(), Some("x"));
assert_eq!(iter.next(), None);
Source

pub fn iter_write_variable_identifiers(&self) -> impl Iterator<Item = &str>

Returns an iterator over all write variable identifiers in this expression. Each occurrence of a variable identifier is returned separately.

§Examples
use evalexpr::*;

let tree = build_operator_tree::<DefaultNumericTypes>("d = a + f(b + c)").unwrap(); // Do proper error handling here
let mut iter = tree.iter_write_variable_identifiers();
assert_eq!(iter.next(), Some("d"));
assert_eq!(iter.next(), None);
Source

pub fn iter_write_variable_identifiers_mut( &mut self, ) -> impl Iterator<Item = &mut String>

Returns an iterator over all write variable identifiers in this expression, allowing mutation. Each occurrence of a variable identifier is returned separately.

§Examples
use evalexpr::*;

let mut tree = build_operator_tree::<DefaultNumericTypes>("d = a + f(b + c)").unwrap(); // Do proper error handling here

for identifier in tree.iter_write_variable_identifiers_mut() {
    *identifier = String::from("x");
}

let mut iter = tree.iter_identifiers();

assert_eq!(iter.next(), Some("x"));
assert_eq!(iter.next(), Some("a"));
assert_eq!(iter.next(), Some("f"));
assert_eq!(iter.next(), Some("b"));
assert_eq!(iter.next(), Some("c"));
assert_eq!(iter.next(), None);
Source

pub fn iter_function_identifiers(&self) -> impl Iterator<Item = &str>

Returns an iterator over all function identifiers in this expression. Each occurrence of a function identifier is returned separately.

§Examples
use evalexpr::*;

let tree = build_operator_tree::<DefaultNumericTypes>("a + f(b + c)").unwrap(); // Do proper error handling here
let mut iter = tree.iter_function_identifiers();
assert_eq!(iter.next(), Some("f"));
assert_eq!(iter.next(), None);
Source

pub fn iter_function_identifiers_mut( &mut self, ) -> impl Iterator<Item = &mut String>

Returns an iterator over all function identifiers in this expression, allowing mutation. Each occurrence of a variable identifier is returned separately.

§Examples
use evalexpr::*;

let mut tree = build_operator_tree::<DefaultNumericTypes>("d = a + f(b + c)").unwrap(); // Do proper error handling here

for identifier in tree.iter_function_identifiers_mut() {
    *identifier = String::from("x");
}

let mut iter = tree.iter_identifiers();

assert_eq!(iter.next(), Some("d"));
assert_eq!(iter.next(), Some("a"));
assert_eq!(iter.next(), Some("x"));
assert_eq!(iter.next(), Some("b"));
assert_eq!(iter.next(), Some("c"));
assert_eq!(iter.next(), None);
Source

pub fn eval_with_context<C: Context<NumericTypes = NumericTypes>>( &self, context: &C, ) -> EvalexprResultValue<NumericTypes>

Evaluates the operator tree rooted at this node with the given context.

Fails, if one of the operators in the expression tree fails.

Source

pub fn eval_with_context_mut<C: ContextWithMutableVariables + Context<NumericTypes = NumericTypes>>( &self, context: &mut C, ) -> EvalexprResultValue<NumericTypes>

Evaluates the operator tree rooted at this node with the given mutable context.

Fails, if one of the operators in the expression tree fails.

Source

pub fn eval(&self) -> EvalexprResultValue<NumericTypes>

Evaluates the operator tree rooted at this node.

Fails, if one of the operators in the expression tree fails.

Source

pub fn eval_string_with_context<C: Context<NumericTypes = NumericTypes>>( &self, context: &C, ) -> EvalexprResult<String, NumericTypes>

Evaluates the operator tree rooted at this node into a string with an the given context.

Fails, if one of the operators in the expression tree fails.

Source

pub fn eval_float_with_context<C: Context<NumericTypes = NumericTypes>>( &self, context: &C, ) -> EvalexprResult<<NumericTypes as EvalexprNumericTypes>::Float, NumericTypes>

Evaluates the operator tree rooted at this node into a float with an the given context.

Fails, if one of the operators in the expression tree fails.

Source

pub fn eval_int_with_context<C: Context<NumericTypes = NumericTypes>>( &self, context: &C, ) -> EvalexprResult<<NumericTypes as EvalexprNumericTypes>::Int, NumericTypes>

Evaluates the operator tree rooted at this node into an integer with an the given context.

Fails, if one of the operators in the expression tree fails.

Source

pub fn eval_number_with_context<C: Context<NumericTypes = NumericTypes>>( &self, context: &C, ) -> EvalexprResult<<NumericTypes as EvalexprNumericTypes>::Float, NumericTypes>

Evaluates the operator tree rooted at this node into a float with an the given context. If the result of the expression is an integer, it is silently converted into a float.

Fails, if one of the operators in the expression tree fails.

Source

pub fn eval_boolean_with_context<C: Context<NumericTypes = NumericTypes>>( &self, context: &C, ) -> EvalexprResult<bool, NumericTypes>

Evaluates the operator tree rooted at this node into a boolean with an the given context.

Fails, if one of the operators in the expression tree fails.

Source

pub fn eval_tuple_with_context<C: Context<NumericTypes = NumericTypes>>( &self, context: &C, ) -> EvalexprResult<TupleType<NumericTypes>, NumericTypes>

Evaluates the operator tree rooted at this node into a tuple with an the given context.

Fails, if one of the operators in the expression tree fails.

Source

pub fn eval_empty_with_context<C: Context<NumericTypes = NumericTypes>>( &self, context: &C, ) -> EvalexprResult<EmptyType, NumericTypes>

Evaluates the operator tree rooted at this node into an empty value with an the given context.

Fails, if one of the operators in the expression tree fails.

Source

pub fn eval_string_with_context_mut<C: ContextWithMutableVariables + Context<NumericTypes = NumericTypes>>( &self, context: &mut C, ) -> EvalexprResult<String, NumericTypes>

Evaluates the operator tree rooted at this node into a string with an the given mutable context.

Fails, if one of the operators in the expression tree fails.

Source

pub fn eval_float_with_context_mut<C: ContextWithMutableVariables + Context<NumericTypes = NumericTypes>>( &self, context: &mut C, ) -> EvalexprResult<<NumericTypes as EvalexprNumericTypes>::Float, NumericTypes>

Evaluates the operator tree rooted at this node into a float with an the given mutable context.

Fails, if one of the operators in the expression tree fails.

Source

pub fn eval_int_with_context_mut<C: ContextWithMutableVariables + Context<NumericTypes = NumericTypes>>( &self, context: &mut C, ) -> EvalexprResult<<NumericTypes as EvalexprNumericTypes>::Int, NumericTypes>

Evaluates the operator tree rooted at this node into an integer with an the given mutable context.

Fails, if one of the operators in the expression tree fails.

Source

pub fn eval_number_with_context_mut<C: ContextWithMutableVariables + Context<NumericTypes = NumericTypes>>( &self, context: &mut C, ) -> EvalexprResult<<NumericTypes as EvalexprNumericTypes>::Float, NumericTypes>

Evaluates the operator tree rooted at this node into a float with an the given mutable context. If the result of the expression is an integer, it is silently converted into a float.

Fails, if one of the operators in the expression tree fails.

Source

pub fn eval_boolean_with_context_mut<C: ContextWithMutableVariables + Context<NumericTypes = NumericTypes>>( &self, context: &mut C, ) -> EvalexprResult<bool, NumericTypes>

Evaluates the operator tree rooted at this node into a boolean with an the given mutable context.

Fails, if one of the operators in the expression tree fails.

Source

pub fn eval_tuple_with_context_mut<C: ContextWithMutableVariables + Context<NumericTypes = NumericTypes>>( &self, context: &mut C, ) -> EvalexprResult<TupleType<NumericTypes>, NumericTypes>

Evaluates the operator tree rooted at this node into a tuple with an the given mutable context.

Fails, if one of the operators in the expression tree fails.

Source

pub fn eval_empty_with_context_mut<C: ContextWithMutableVariables + Context<NumericTypes = NumericTypes>>( &self, context: &mut C, ) -> EvalexprResult<EmptyType, NumericTypes>

Evaluates the operator tree rooted at this node into an empty value with an the given mutable context.

Fails, if one of the operators in the expression tree fails.

Source

pub fn eval_string(&self) -> EvalexprResult<String, NumericTypes>

Evaluates the operator tree rooted at this node into a string.

Fails, if one of the operators in the expression tree fails.

Source

pub fn eval_float( &self, ) -> EvalexprResult<<NumericTypes as EvalexprNumericTypes>::Float, NumericTypes>

Evaluates the operator tree rooted at this node into a float.

Fails, if one of the operators in the expression tree fails.

Source

pub fn eval_int( &self, ) -> EvalexprResult<<NumericTypes as EvalexprNumericTypes>::Int, NumericTypes>

Evaluates the operator tree rooted at this node into an integer.

Fails, if one of the operators in the expression tree fails.

Source

pub fn eval_number( &self, ) -> EvalexprResult<<NumericTypes as EvalexprNumericTypes>::Float, NumericTypes>

Evaluates the operator tree rooted at this node into a float. If the result of the expression is an integer, it is silently converted into a float.

Fails, if one of the operators in the expression tree fails.

Source

pub fn eval_boolean(&self) -> EvalexprResult<bool, NumericTypes>

Evaluates the operator tree rooted at this node into a boolean.

Fails, if one of the operators in the expression tree fails.

Source

pub fn eval_tuple( &self, ) -> EvalexprResult<TupleType<NumericTypes>, NumericTypes>

Evaluates the operator tree rooted at this node into a tuple.

Fails, if one of the operators in the expression tree fails.

Source

pub fn eval_empty(&self) -> EvalexprResult<EmptyType, NumericTypes>

Evaluates the operator tree rooted at this node into an empty value.

Fails, if one of the operators in the expression tree fails.

Source

pub fn children(&self) -> &[Node<NumericTypes>]

Returns the children of this node as a slice.

Source

pub fn operator(&self) -> &Operator<NumericTypes>

Returns the operator associated with this node.

Source

pub fn children_mut(&mut self) -> &mut Vec<Node<NumericTypes>>

Returns a mutable reference to the vector containing the children of this node.

WARNING: Writing to this might have unexpected results, as some operators require certain amounts and types of arguments.

Source

pub fn operator_mut(&mut self) -> &mut Operator<NumericTypes>

Returns a mutable reference to the operator associated with this node.

WARNING: Writing to this might have unexpected results, as some operators require different amounts and types of arguments.

Trait Implementations§

Source§

impl<NumericTypes: Clone + EvalexprNumericTypes> Clone for Node<NumericTypes>

Source§

fn clone(&self) -> Node<NumericTypes>

Returns a duplicate of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl<NumericTypes: Debug + EvalexprNumericTypes> Debug for Node<NumericTypes>

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Display for Node

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
Source§

impl<NumericTypes: PartialEq + EvalexprNumericTypes> PartialEq for Node<NumericTypes>

Source§

fn eq(&self, other: &Node<NumericTypes>) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl<NumericTypes: EvalexprNumericTypes> StructuralPartialEq for Node<NumericTypes>

Auto Trait Implementations§

§

impl<NumericTypes> Freeze for Node<NumericTypes>
where <NumericTypes as EvalexprNumericTypes>::Float: Freeze, <NumericTypes as EvalexprNumericTypes>::Int: Freeze,

§

impl<NumericTypes> RefUnwindSafe for Node<NumericTypes>
where <NumericTypes as EvalexprNumericTypes>::Float: RefUnwindSafe, <NumericTypes as EvalexprNumericTypes>::Int: RefUnwindSafe,

§

impl<NumericTypes> Send for Node<NumericTypes>
where <NumericTypes as EvalexprNumericTypes>::Float: Send, <NumericTypes as EvalexprNumericTypes>::Int: Send,

§

impl<NumericTypes> Sync for Node<NumericTypes>
where <NumericTypes as EvalexprNumericTypes>::Float: Sync, <NumericTypes as EvalexprNumericTypes>::Int: Sync,

§

impl<NumericTypes> Unpin for Node<NumericTypes>
where <NumericTypes as EvalexprNumericTypes>::Float: Unpin, <NumericTypes as EvalexprNumericTypes>::Int: Unpin,

§

impl<NumericTypes> UnwindSafe for Node<NumericTypes>
where <NumericTypes as EvalexprNumericTypes>::Float: UnwindSafe, <NumericTypes as EvalexprNumericTypes>::Int: UnwindSafe,

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T> ToString for T
where T: Display + ?Sized,

Source§

fn to_string(&self) -> String

Converts the given value to a String. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.