Wiki

Clone wiki

symja_android_library / Symbols / Apply

Apply (@@ operator)

Apply(head, expr)
substitute the head of expr by the given head.

Examples

>>> Apply(u, v(w,x,y))
u(w,x,y)
>>> u@@v(w,x,y)
u(w,x,y)

Updated