pub trait ContextWithMutableVariables: Context {
    fn set_value(
        &mut self,
        _identifier: String,
        _value: Value
    ) -> EvalexprResult<()> { ... } }
Expand description

A context that allows to assign to variables.

Provided methods

Sets the variable with the given identifier to the given value.

Implementors