stdlibx-option ============== .. toctree:: :maxdepth: 1 :hidden: Getting Started Reference This package provides an option type that represents either a value (:py:class:`~stdlibx.option.Some`) or the absence of a value (:py:class:`~stdlibx.option.Nothing`). It offers a safer and more explicit alternative to None, making it easier to handle optional values in a composable and predictable way. Installation ------------ .. tab:: pip .. code-block:: bash pip install stdlibx-option .. tab:: uv .. code-block:: bash uv add stdlibx-option .. tab:: poetry .. code-block:: bash poetry add stdlibx-option .. tab:: pipenv .. code-block:: bash pipenv install stdlibx-option