Function endbasic_core::eval::eval_all[][src]

pub fn eval_all(exprs: &[Expr], syms: &mut Symbols) -> Result<Vec<Value>>
Expand description

Evaluates all arguments given to a function.

This is a convenience function to simplify the processing of arguments because most functions do not care about unevaluated expressions. However, using this function is inefficient in many occasions because we are allocating a vector that we don’t need.