There are other questions such as Scala: What is the difference between Traversable and Iterable traits in Scala collections? and How would I get the sum of squares of two Lists in Scala? that answers the question partially. I felt a question that covers all of this in one place makes sense.

link|improve this question

68% accept rate
3  
I'm voting to close 1) because this is not really a specific question but far to general, 2) because the information is likely to grow stale as Scala evolves and 3) because the general case is already well-defined by Scala's own documentation, which is probably a better resource for such broad investigations (and Scala, unlike many other languages, has quite extensive, if sometimes quite challenging documentation). – ig0774 Dec 20 '11 at 1:21
2  
@ig0774 2)In my opinion, it is too core concepts of scala collections to be changed significantly in observable future. – om-nom-nom Dec 20 '11 at 2:12
5  
@ig0774 In contrast to your three points, I upvoted rather than vote to close because 1) I feel this question is generally valuable, and tangible enough to be answered succinctly, 2) because it lies near the heart of understanding the current Scala collections library, and 3) the current documentation, though extensive, is very spread out; it's hard to get the big picture. – Dan Burton Dec 20 '11 at 6:07
1  
@ig0774 thanks for the link. I wasn't aware of this documentation scala-lang.org/docu/files/collections-api/collections.html. Good read. But, I think it does make sense this question to be here for a beginner looking for it in so. – smartnut007 Dec 22 '11 at 20:39
@om-nom (last week) theoretical discussion of exactly this: groups.google.com/group/scala-internals/browse_thread/thread/… – Gene T Dec 23 '11 at 7:18
feedback

1 Answer

up vote 7 down vote accepted

Traversable is the top of the collections hierarchy. Its main method is 'foreach' so it allows to do something for each element of the collection.

An Iterable can create an Iterator, based on which foreach can be implemented. This defines some order of the elements, although that order might change for every Iterator.

Seq(uence) is an Iterable where the order of elements is fixed. Therefor it makes sense to talk about the index of an element.

Streams are lazy Sequences. I.e. elements of a stream may not be computed before they are accessed. This makes it possible to work with infinite sequences like the sequence of all integers.

Views are non-strict versions of collections. Methods like filter and map on view only execute the passed functions when the respective element gets accessed. Thus a map on a huge collection returns immediately because it just creates a wrapper around the original collection. Only when one access an element, the mapping gets actually executed (for that element). Note that View is not a class, but there are lots of XxxView classes for various collections.

link|improve this answer
2  
Views aren't lazy, just non-strict. Laziness requires caching, which streams do, but views don't. – Daniel C. Sobral Dec 20 '11 at 3:28
Thanks for the clarification. fixed it in the answer. – Jens Schauder Dec 20 '11 at 4:16
1  
@DanielC.Sobral "Laziness requires caching" - um, what? – Dan Burton Dec 20 '11 at 6:01
2  
@DanBurton - so that if you ask for the same value another time, it would not be recomputed. Otherwise, it is not so "lazy" :) – Rogach Dec 20 '11 at 7:29
2  
Perhaps "memoization" would be a better description, since that precludes values from being dropped, which is not the case of caching. – Daniel C. Sobral Dec 20 '11 at 14:01
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.