I guess Scala has function composition, this is something where partially applied functions shine.
Another point are higher order functions like filter
that take a predicate, and their usage like in:
filter (<42) list -- sorry, don't speak Scala
The predicate is often some partially applied function. Same holds for map
, fold
etc.