I\'m learning more about Scala, and I\'m having a little trouble understanding the example of anonymous functions in http://www.scala-lang.org/node/135. I\'ve copied the ent
You are partially applying the ModN function. Partial function application is one of the main features of functional languages. For more information check out these articles on Currying and Pointfree style.