Concepts
Scala Principles in a Nutshell (Part II)
Every computation in Scala is treated like a mathematical function, and the evaluation of these functions is made following the Substitution Model which has many strategies, two of them are: Call-by-value Strategy This is the strategy by default, the arguments of the function are evaluated before the function itself, like Read more…