Synopsis:
w / f -- apply the function f to each member of the list or sequence w returning a list or sequence containing the results. The same as apply(w,f).
This operator is left associative, which means that w / f / g is interpreted as meaning (w / f) / g.
i1 : {1,2,3} / (i -> i+1) / (j -> j^2) |
See also:
Code:
-- ../../../Macaulay2/m2/classes.m2:70 VisibleList / Function := VisibleList => (v,f) -> apply(v,f)