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
Go to main index.
Go to concepts index.