Let’s learn about function composition in Scala
Reading Time: 3 minutes In this blog, we are going to learn about how a list of functions can be composed to create a single function, in the context of mapping a set of values using those functions. Introduction When we compose two functions, we create a new function which applies one function to the result of the other. If I have one function a -> b which takes an a and gives Continue Reading