F# has the pipeline operators:
arg |> func // or arg2 |> func arg1, as opposed to func arg1 arg2
func <| arg
Haskell has the $
operator:
func $ arg -- or func1 $ func2 arg, as opposed to func1 (func2 arg)
They're mostly used to increase readability by de-cluttering the function calls.
Is there a similar operator in Scala?