├── .bumpversion.cfg ├── .circleci └── config.yml ├── .github └── dependabot.yml ├── .gitignore ├── .pylintrc ├── LICENSE ├── Makefile ├── README.md ├── docs ├── Makefile ├── conf.py ├── index.rst └── option.rst ├── option ├── __init__.py ├── option_.py ├── py.typed ├── result.py └── types_.py ├── poetry.lock ├── pyproject.toml ├── pytest.ini └── tests ├── __init__.py ├── conftest.py ├── test_flatmap.py ├── test_option.py └── test_result.py /.bumpversion.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaT1g3R/option/HEAD/.bumpversion.cfg -------------------------------------------------------------------------------- /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaT1g3R/option/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaT1g3R/option/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaT1g3R/option/HEAD/.gitignore -------------------------------------------------------------------------------- /.pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaT1g3R/option/HEAD/.pylintrc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaT1g3R/option/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaT1g3R/option/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaT1g3R/option/HEAD/README.md -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaT1g3R/option/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaT1g3R/option/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaT1g3R/option/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/option.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaT1g3R/option/HEAD/docs/option.rst -------------------------------------------------------------------------------- /option/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaT1g3R/option/HEAD/option/__init__.py -------------------------------------------------------------------------------- /option/option_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaT1g3R/option/HEAD/option/option_.py -------------------------------------------------------------------------------- /option/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /option/result.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaT1g3R/option/HEAD/option/result.py -------------------------------------------------------------------------------- /option/types_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaT1g3R/option/HEAD/option/types_.py -------------------------------------------------------------------------------- /poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaT1g3R/option/HEAD/poetry.lock -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaT1g3R/option/HEAD/pyproject.toml -------------------------------------------------------------------------------- /pytest.ini: -------------------------------------------------------------------------------- 1 | [pytest] 2 | -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaT1g3R/option/HEAD/tests/__init__.py -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaT1g3R/option/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/test_flatmap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaT1g3R/option/HEAD/tests/test_flatmap.py -------------------------------------------------------------------------------- /tests/test_option.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaT1g3R/option/HEAD/tests/test_option.py -------------------------------------------------------------------------------- /tests/test_result.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaT1g3R/option/HEAD/tests/test_result.py --------------------------------------------------------------------------------