pub fn unary<'a, V: Clone>(
cv: Cv<'a, V>,
f: impl Fn(V, V) -> ValR<V> + 'a,
) -> ValXs<'a, V>Expand description
Create a filter that takes a single variable argument and whose output is given by
the function f that takes the input value and the value of the variable.