In Scala I could do this:
lines.filter(_.length < 10) // notice the _ acting as the argument
In Haskell the best I can come up with is:
filter ((< 10) . length) lines // point-free with `.` :(
So basically in Haskell there is no way to do something like
length _ < 10 // short hand for: \x -> length x < 10
?