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)
Can't you just redefine $.
$
let ($) x f = f x
Or just choose a different operator, like $$
$$