Scala Articles
Multiple Parameter Lists in Scala
27 Jan 2018 •SCALA
CURRYING
Note: I wrote this article as part of a contribution to Scala Documentation. The original post can be found here.
Methods may define multiple parameter lists. When a method is called with a fewer number of parameter lists, then this will yield a function taking the missing parameter lists as its arguments. This is formally known as currying.
.. Read More