Evaluates a math expression across all of the input items at once. A full expression reads the items as a, b, c, …, while a math operator or N-argument function name (like * or min) applies across every item.
Boolean items read as 0 or 1, and a boolean output requires the expression to produce exactly 0 or 1, since any other number is not a truth value.
Interface
Inputs
| Parameter | Details | Possible Types |
|---|---|---|
| Values | The items the expression reads. Primary Input | bool[]f32[]f64[] |
| f(…) = | The expression evaluated over the items, such as Default: | String |
Outputs
| Product | Details | Possible Types |
|---|---|---|
| Result | The value produced by the node operation. Primary Output | f64f32bool |