Scala concepts

The following notes are taken after reading “Programming in Scala second edition”,
by Martin Oderdky, Lex Spoon and Bill Venners.

Valid operator characters

Scala syntax allows method names to use special characters such as +, * and :, and 
to use them as infix operators, which effectively allows operator overloading.
Lees meer »