In Scala, for many (all?) types of collections you can create views.
What exactly is a view and for which purposes are views useful?
|
In Scala, for many (all?) types of collections you can create views. What exactly is a view and for which purposes are views useful?
| ||||
|
feedback
|
|
Views are non-strict versions of collections. This means that the elements are calculated at access and not eagerly as in normal collections. As an example take the following code:
Just this will not print anything but every access to the list will perform the calculation and print the value, i.e. every call to One use for views is when you need to traverse a collection of values which are expensive to compute and you only need one value at a time. Also views let you build lazy sequences by calling | |||
|
feedback
|
|
See Views from Scala 2.8 Collections API.
| |||
|
feedback
|