We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 83e06f8 commit 2d762e5Copy full SHA for 2d762e5
docs/source/api/itertools.rst
@@ -8,6 +8,12 @@ The itertools library
8
The :py:mod:`asyncstdlib.itertools` library implements
9
Python's :py:mod:`itertools` for (async) functions and (async) iterables.
10
11
+.. note::
12
+
13
+ Only functions which benefit from an explicit ``async`` implementation are provided.
14
+ Other functions from ``itertools`` can be turned asynchronous using :py:func:`~asyncstdlib.iter`,
15
+ e.g. `asyncstdlib.iter(itertools.count(5))`.
16
17
.. note::
18
19
To avoid leaking resources, all utilities in this module explicitly close their
0 commit comments