A Brief Story of flatMap
Posted: July 12, 2015 | Scala , Functional ProgrammingThe function flatMap, in Scala, is basically a binding element (and also a functional combinator) in the language and key to understand some import...
Scala Companion Objects
Posted: February 15, 2015 | Programming , ScalaIt’s a very common approach to create new objects using factory methods in object-oriented programming as it is in Java. It allows us to decrease c...