Coverage for src/monadc/try_/__init__.py: 100%
4 statements
« prev ^ index » next coverage.py v7.10.2, created at 2025-08-19 20:24 -0700
« prev ^ index » next coverage.py v7.10.2, created at 2025-08-19 20:24 -0700
1"""
2Try monad for representing computations that may throw exceptions.
4Scala-inspired Try type providing Success and Failure for exception handling.
5"""
7from .try_ import Try
8from .success import Success
9from .failure import Failure
11__all__ = ["Try", "Success", "Failure"]