Is there a Scala operator similar to Haskell's $ (dollar sign)?

Viewed 2272

Is there any way to force operator precedence in Scala like you do in Haskell with $?

For example, in Haskell, you have:

a b c = ((a b) c)

and

a $ b c = a (b c)

Is there a similar way to do this in Scala? I know Scala doesn't have operators per se, but is there a way to achieve a similar effect?

3 Answers
Related