Commit fdbda25f authored by Raymond Hettinger's avatar Raymond Hettinger

Issue 5477: Fix buglet in the itertools documentation.

parent 63823d13
......@@ -26,9 +26,10 @@ For instance, SML provides a tabulation tool: ``tabulate(f)`` which produces a
sequence ``f(0), f(1), ...``. But, this effect can be achieved in Python
by combining :func:`map` and :func:`count` to form ``map(f, count())``.
The tools also work well with the high-speed functions in the :mod:`operator`
module. For example, the plus-operator can be mapped across two vectors to
form an efficient dot-product: ``sum(map(operator.add, vector1, vector2))``.
These tools and their built-in counterparts also work well with the high-speed
functions in the :mod:`operator` module. For example, the multiplication
operator can be mapped across two vectors to form an efficient dot-product:
``sum(map(operator.mul, vector1, vector2))``.
**Infinite Iterators:**
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment