In the Scala 2.8 collections framework, what is the difference between view and toStream?
view
toStream
Geoff's answer covers almost everything, but I want to add that a Stream is a List-like sequence, while every kind of collections (maps, sets, indexed seqs) have views.
Stream
List