stdlibx-itertools ================= .. toctree:: :maxdepth: 1 :hidden: Getting Started Reference This package extends Python's built-in itertools with additional utilities for working with iterables in a functional and composable way. It provides operations such as mapping, filtering, reducing, and collecting, designed to integrate naturally with function composition utilities like :py:meth:`~stdlibx.compose.flow` and :py:meth:`~stdlibx.compose.pipe` from the :doc:`/packages/compose/index` package. Installation ------------ .. tab:: pip .. code-block:: bash pip install stdlibx-itertools .. tab:: uv .. code-block:: bash uv add stdlibx-itertools .. tab:: poetry .. code-block:: bash poetry add stdlibx-itertools .. tab:: pipenv .. code-block:: bash pipenv install stdlibx-itertools