├── .github └── workflows │ └── ci.yml ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── MANIFEST.in ├── MIGRATING.md ├── Makefile ├── README.md ├── RELEASING.md ├── codecov.yml ├── docs ├── .pages ├── README.md └── result.md ├── pyproject.toml ├── requirements-dev.txt ├── setup.cfg ├── setup.py ├── src └── result │ ├── __init__.py │ ├── py.typed │ └── result.py ├── tests ├── test_pattern_matching.py ├── test_result.py ├── test_result_do.py └── type_checking │ └── test_result.yml └── tox.ini /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rustedpy/result/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rustedpy/result/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rustedpy/result/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rustedpy/result/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- 1 | include src/result/py.typed 2 | -------------------------------------------------------------------------------- /MIGRATING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rustedpy/result/HEAD/MIGRATING.md -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rustedpy/result/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rustedpy/result/HEAD/README.md -------------------------------------------------------------------------------- /RELEASING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rustedpy/result/HEAD/RELEASING.md -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rustedpy/result/HEAD/codecov.yml -------------------------------------------------------------------------------- /docs/.pages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rustedpy/result/HEAD/docs/.pages -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rustedpy/result/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/result.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rustedpy/result/HEAD/docs/result.md -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rustedpy/result/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements-dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rustedpy/result/HEAD/requirements-dev.txt -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rustedpy/result/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rustedpy/result/HEAD/setup.py -------------------------------------------------------------------------------- /src/result/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rustedpy/result/HEAD/src/result/__init__.py -------------------------------------------------------------------------------- /src/result/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/result/result.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rustedpy/result/HEAD/src/result/result.py -------------------------------------------------------------------------------- /tests/test_pattern_matching.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rustedpy/result/HEAD/tests/test_pattern_matching.py -------------------------------------------------------------------------------- /tests/test_result.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rustedpy/result/HEAD/tests/test_result.py -------------------------------------------------------------------------------- /tests/test_result_do.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rustedpy/result/HEAD/tests/test_result_do.py -------------------------------------------------------------------------------- /tests/type_checking/test_result.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rustedpy/result/HEAD/tests/type_checking/test_result.yml -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rustedpy/result/HEAD/tox.ini --------------------------------------------------------------------------------