| 1 | """Module for the creation and use of iterator-based lazy lists. |
| 2 | this module defines a class LazyList which can be used to represent sequences |
| 3 | of values generated lazily. One can also create recursively defined lazy lists |
| 4 | that generate their values based on ones previously generated.""" |