Everything doesn't have to have an operator! We use operators a bit too much. It hurts readability of code when lines start looking like APL.

On Fri, Dec 12, 2014 at 2:15 PM, Wojtek NarczyƄski <wojtek@power.com.pl> wrote:

On 12.12.2014 03:58, Dan Burton wrote:
The lens package defines (&) and (<&>) as flipped ($) and (<$>), respectively. There is nothing in the base package that defines those. <&> is quite uncommon. Flipped ($) is something that crops up here and there. Sometimes called (|>), or (#).



https://github.com/ghc/ghc/blob/master/libraries/base/Data/Function.hs

A the bottom.

-- /Since: 4.8.0.0/
(&) :: a -> (a -> b) -> b
x & f = f x

I learned about it from #haskell channel.

--
Wojtek

_______________________________________________
Haskell-Cafe mailing list
Haskell-Cafe@haskell.org
http://www.haskell.org/mailman/listinfo/haskell-cafe