Function @ List

f @ w -- 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 right associative, and the precendence is lower than that of adjacency. Hence, the following two examples yield the same result.

     i1 = sin @ sin @ {1,2,3}
     
     o1 = {0.745624,0.789072,0.140652}
     
     o1 : List
     
     i2 = sin @@ sin @ {1,2,3}
     
     o2 = {0.745624,0.789072,0.140652}
     
     o2 : List
     

See also apply and @@.

Go to main index.

Go to concepts index.