Changeset 613
- Timestamp:
- 02/14/06 12:13:03 (4 years ago)
- Location:
- mochikit/trunk/doc
- Files:
-
- 2 modified
-
html/MochiKit/Iter.html (modified) (1 diff)
-
rst/MochiKit/Iter.rst (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
mochikit/trunk/doc/html/MochiKit/Iter.html
r546 r613 40 40 <p>MochiKit.Iter defines a standard way to iterate over anything, that you can 41 41 extend with <a class="mochiref reference" href="#fn-registeriterator">registerIterator</a>, or by implementing the <tt class="docutils literal"><span class="pre">.iter()</span></tt> 42 protocol. Iterators are lazy, so it can potentially be cheaper to buil ta42 protocol. Iterators are lazy, so it can potentially be cheaper to build a 43 43 filter chain of iterators than to build lots of intermediate arrays. 44 44 Especially when the data set is very large, but the result is not.</p> -
mochikit/trunk/doc/rst/MochiKit/Iter.rst
r474 r613 34 34 MochiKit.Iter defines a standard way to iterate over anything, that you can 35 35 extend with :mochiref:`registerIterator`, or by implementing the ``.iter()`` 36 protocol. Iterators are lazy, so it can potentially be cheaper to buil ta36 protocol. Iterators are lazy, so it can potentially be cheaper to build a 37 37 filter chain of iterators than to build lots of intermediate arrays. 38 38 Especially when the data set is very large, but the result is not.
