What are the differences among Streams, Views (SeqView), and Iterators in scala? This is my understanding:
- They are all lazy lists.
- Streams cache the values.
- Iterators can only be used once? You can’t go back to the beginning and evaluate the value again?
- View’s values are not cached but you can evaluate them again and again?
So if I want to save heap space, should I use iterators (if I won’t traverse the list again) or views? Thanks.
First, they are all non-strict. That has a particular mathematical meaning related to functions, but, basically, means they are computed on-demand instead of in advance.
Streamis a lazy list indeed. In fact, in Scala, aStreamis aListwhosetailis alazy val. Once computed, a value stays computed and is reused. Or, as you say, the values are cached.An
Iteratorcan only be used once because it is a traversal pointer into a collection, and not a collection in itself. What makes it special in Scala is the fact that you can apply transformation such asmapandfilterand simply get a newIteratorwhich will only apply these transformations when you ask for the next element.Scala used to provide iterators which could be reset, but that is very hard to support in a general manner, and they didn’t make version 2.8.0.
Views are meant to be viewed much like a database view. It is a series of transformation which one applies to a collection to produce a “virtual” collection. As you said, all transformations are re-applied each time you need to fetch elements from it.
Both
Iteratorand views have excellent memory characteristics.Streamis nice, but, in Scala, its main benefit is writing infinite sequences (particularly sequences recursively defined). One can avoid keeping all of theStreamin memory, though, by making sure you don’t keep a reference to itshead(for example, by usingdefinstead ofvalto define theStream).Because of the penalties incurred by views, one should usually
forceit after applying the transformations, or keep it as a view if only few elements are expected to ever be fetched, compared to the total size of the view.