Looking at the scaladoc for Traversable and TraversableLike, I'm having a hard time figuring out what the difference between them is (except that one extends the other). The only apparent difference in the documentation is that it says Traversable is a "trait" and TraversableLike is a "template trait". But googling for "template trait" does not reveal a definition for this term. Help!
|
I haven't seen this terminology in general use in Scala, and I think it's specific to the design of the Scala collections API. You can learn more by reading The Architecture of Scala Collections (especially the section on "factoring out common operations")[1] and the Scala collections SID. §4.2 of the SID is relevant, although they're referred to as "implementation traits" there:
In short, their purpose is both to separate implementation for use outside the collections hierarchy (e.g. I should note that you really don't need to be concerned with these classes unless you are extending the collections hierarchy. For ordinary use, focus on the [1] credit goes to michid for this link |
|||||
|
|
The XXXLike traits have an important role of adding the Repr generic parameter. Methods that are supposed to return the same collection type, like filter, map, flatMap, are implemented in low level traits (TraversableLike). To encode their return type, those traits receive it:
(for map and flatMap the issue is more complicated, I won't go into it here) Now say you have a new type of collection. You could do:
But then if anyone wants to extend your collection, they are stuck with return values of MyCollection from the various inherited methods. So instead, you create:
and
and anyone that wants to extend your collection extends MyCollectionLike |
|||
|
|
The [...]Like classes are implementation classes for the actual collection classes. In a sense they act like template implementations from which most - if not all - behavior is inherited by the actual collection classes. For a very detailed and approachable overview read The Architecture of Scala Collections. |
|||
|
|