We have a monthly iBAT (Inphina Beer and Technology Sessions). We look forward to this day and it was Scala day this time. I presented on Scala collections.
Scala collection is elegant and concise. Scala Collections like java is object-oriented and we can work with generic types. It is optionally persistent i.e can be mutable and immutable. It provides higher order methods like foreach, map and filter.
Scala collections follow uniform return type principle. Which basically means that when you perform an operation on a collection they return a collection of the same type.
The root Trait in Scala collections is Traversable. It may take some time to get used to it as Scala collections root Traits like Traversable have a big bunch of methods.
The for notation is more readable. It is basically like a for loop with a return type. Look for yourself how readable it is compared to the original code.
This code listing is without a for notation
After using for notation
One more interesting thing we can do with a Map is that we can reverse key and value with the following code
Reference were from Martin’s Odersky talk on Future Proofing Collections and Scala Collections API documentation. Enjoy the presentation …