SHARE
TWEET

Untitled




Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
- fix :: (a -> a) -> a
- fix f = let x = f x in x
- on :: (b -> b -> c) -> (a -> b) -> a -> a -> c
- (.*.) `on` f = \x y -> f x .*. f y
- (&) :: a -> (a -> b) -> b
- x & f = f x
RAW Paste Data
We use cookies for various purposes including analytics. By continuing to use Pastebin, you agree to our use of cookies as described in the Cookies Policy.