A quick question, is there an operator in Haskell that works like the dollar sign but gives precedence to the left hand side. I.E. instead of
f (x 1) >
f (x 1)
In Haskell you can use flip to change arguments' order of any binary function or operator:
flip
ghci> let (|>) = flip ($) ghci> 3 |> (+4) |> (*6) 42