Sujith Jay Nair Thinking Aloud

Currying Articles

Subscribe for an infrequent newsletter.

    Multiple Parameter Lists in Scala

    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