Scala Collections – Useful Resources, The following resources contain additional information on Scala. Please use them to get more in-depth knowledge on this topic.…Read More
Discuss Scala Collections, Scala has a rich set of collection library. Collections are containers of things. Those containers can be sequenced, linear sets of items like List, Tuple, Opti…Read More
Scala Collections – Quick Guide, Scala has a rich set of collection library. Collections are containers of things. Those containers can be sequenced, linear sets of items like List, Tuple, Opti…Read More
Scala Collections – Zip Method, zip() method is a member of IterableLike trait, it is used to merge a collection to current collection and result is a collection of pair of tuple elements from…Read More
Scala Collections – Scan Method, scan() method is a member of TraversableLike trait, it is similar to fold method but is used to apply a operation on each elements of collection and return a c…Read More
Scala Collections – Partition Method, partition() method is a member of TraversableLike trait, it is used to run a predicate method on each elements of a collection. It returns two collections, one …Read More
Scala Collections – Reduce Method, reduce() method is a member of TraversableOnce trait, it is used to collapse elements of collections. It is similar to fold method but it does not take initial…Read More
Scala Collections – FoldLeft Method, foldLeft() method is a member of TraversableOnce trait, it is used to collapse elements of collections. It navigates elements from Left to Right order. It is p…Read More
Scala Collections – FoldRight Method, foldRight() method is a member of TraversableOnce trait, it is used to collapse elements of collections. It navigates elements from Right to Left order.…Read More
Scala Collections – Map Method, map() method is a member of TraversableLike trait, it is used to run a predicate method on each elements of a collection. It returns a new collection.…Read More