Hacker News new | ask | show | jobs
by lubutu 5324 days ago
To be precise: cons (:), bind (>>=), 'constant bind' (>>), 'flipped bind' (=<<), compose (.), apply ($), strict apply ($!), append (++), and subscript (!!).
1 comments

I had never seen $! before, of course it's obvious what it does if you know ! and $. There are patterns like this throughout the operators.

There are also the applicatives <$> <*> <$ etc.