pub trait IntoNodeList {
// Required method
fn into_nodes(self) -> Vec<ElemNode>;
}Expand description
Helper accepted by the variadic math fold helpers.
Arrays work for homogeneous inputs, while tuples are the ergonomic
escape hatch for mixed Node/numeric arguments.