(quote /,List,Function)

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)

o1 = {4, 9, 16}

o1 : List

See also apply and Function \ List.


topindexpreviousupnext