Special syntax for applying a infix operator to a single argument. Uses Haskell Currying under the hood.
(#y)
(y#)Example
>>> map (+2) [1,2,3]
[3,4,5]
>>> map (/2) [1,2,3]
[0.5,1,1.5]Special syntax for applying a infix operator to a single argument. Uses Haskell Currying under the hood.
(#y)
(y#)>>> map (+2) [1,2,3]
[3,4,5]
>>> map (/2) [1,2,3]
[0.5,1,1.5]