jordymoos / pilf / Pilf

This library has the awesome function flip and a functionally equal function pilf for awesomeness purposes

flip : (a -> b -> c) -> b -> a -> c

Flip the order of the first two arguments to a function.

pilf : (b -> a -> c) -> a -> b -> c

Pilf the order of the first two arguments to a function.

Functionality is the same as flip but the names in the implementation also changed order which make it looks like pilf instead of flip.