Is it posible to use yield as iterator without evaluation every value? It is common task when it is easy to implement complex list generation, and then you need to convert it into iterator because you don't need some results...
|
feedback
|
|
Sure. Actually, there are three options for non-strictness, which I list below. For the examples, assume:
| ||||
|
feedback
|
|
Use views if you want lazy evaluation, see http://www.scala-lang.org/docu/files/collections-api/collections_42.html. http://www.scala-lang.org/docu/files/collections-api/collections.html is a fantastic read if you're going to use the scala collections a lot. | |||
|
feedback
|
|
I have a
And a function...
And now I'll use a for-comprehension with an
You can use a for comprehension on any type with
Evaluation is non-strict in either case...
| ||||
|
feedback
|