Could someone please help me understand Scala\'s various \"Like\" traits in the collection API. I\'ve been reading over and trying to compare each without luck. I think I can se
The best source for these details is Martin Odersky and Lex Spoon's "What's New in Scala 2.8: The Architecture of Scala Collections":
The Scala collection library avoids code duplication and achieves the "same-result-type" principle by using generic builders and traversals over collections in so-called implementation traits. These traits are named with a
Like
suffix; for instance,IndexedSeqLike
is the implementation trait forIndexedSeq
, and similarly,TraversableLike
is the implementation trait forTraversable
. Collection classes such asTraversable
orIndexedSeq
inherit all their concrete method implementations from these traits. Implementation traits have two type parameters instead of one for normal collections. They parameterize not only over the collection's element type, but also over the collection's representation type, i.e., the type of the underlying collection, such asSeq[I]
orList[T]
...
The whole article is extremely useful if you want to integrate your own collection classes with the Collections API, or if you just want a deeper understanding of how the library works.