Argument placeholder syntax in Haskell, like _ in Scala?

218 Views Asked by At

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

?

1

There are 1 best solutions below

4
On

Yes, Haskell has no placeholder syntax like Scala.

Usually the problem with such syntax is that it either has some arcane rules or it is not really useful in practice. I'm trying to understand Scala's rules now, but I have a feeling it is on the arcane side (what exactly is "syntactic category Expr"?).