Understanding implicit in Scala
I’ll explain the main use cases of implicits below, but for more detail see the relevant chapter of Programming in Scala. Implicit parameters The final parameter list on a method can be marked implicit, which means the values will be taken from the context in which they are called. If there is no implicit value … Read more