Return an iterator over the values in a LazyList that have already been computed.
(self)
| 67 | return self[:] |
| 68 | |
| 69 | def computed(self): |
| 70 | """Return an iterator over the values in a LazyList that have |
| 71 | already been computed.""" |
| 72 | return self[:len(self)] |
| 73 | |
| 74 | def exhaust(self, index = None): |
| 75 | """Exhaust the iterator generating this LazyList's values. |