Higher-order Functions in Scala
Passing a function to another function as argument in Scala… Read More Higher-order Functions in Scala
Passing a function to another function as argument in Scala… Read More Higher-order Functions in Scala
One of the many cool features Scala provides over Java is the ability to provide default values for parameters. Such parameters become optional and the callers can invoke the method without providing a value for those parameters. This is useful in cases wherever you overload methods in Java – like constructor chaining, releasing a newer… Read More Optional Parameters in Scala