[top][index]
search for:

## -- uncurry a function

f ## (a,b) -- computes ((f a) b).
f ## (a,b,c) -- computes (((f a) b) c).
f ## (a,b,c,d) -- computes ((((f a) b) c) d).
... and so on.

i1 : f = a -> b -> c -> [a,b,c]

o1 = f

o1 : Function
i2 : f ## (1,2,3)

o2 = [1, 2, 3]

o2 : Array

Methods for ## :

  • Function ## Sequence

  • [top][index]
    search for: