◆ __aiter__()
◆ __anext__()
◆ last()
Whether this is the last iteration of the loop.
Causes the iterable to advance early. See
:func:`itertools.groupby` for issues this can cause.
The :func:`groupby` filter avoids that issue.
Reimplemented from LoopContext.
◆ length()
Length of the iterable.
If the iterable is a generator or otherwise does not have a
size, it is eagerly evaluated to get a size.
Reimplemented from LoopContext.
◆ nextitem()
The item in the next iteration. Undefined during the last
iteration.
Causes the iterable to advance early. See
:func:`itertools.groupby` for issues this can cause.
The :func:`groupby` filter avoids that issue.
Reimplemented from LoopContext.
◆ revindex()
Number of iterations from the end of the loop, ending at 1.
Requires calculating :attr:`length`.
Reimplemented from LoopContext.
◆ revindex0()
Number of iterations from the end of the loop, ending at 0.
Requires calculating :attr:`length`.
Reimplemented from LoopContext.
The documentation for this class was generated from the following file:
- /home/passerat/Stage/flaskProject/venv/lib/python3.8/site-packages/jinja2/asyncsupport.py