Curried Function

Curried Functions in Simple Words in Scala

Reading Time: 2 minutes In this blog post, we will take a look at curried functions in Scala with the help of an example. What are Curried Functions? Currying is a technique or a process for modifying a function in Scala. This function converts several parameters into a single argument function. Curried functions have multiple parameter lists. It is widely used in a wide range of functional languages. Let’s Continue Reading