Coverage for src/monadc/result/__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"""
2Result monad for representing computations that can succeed or fail.
4Rust-inspired Result type providing Ok and Err for error handling.
5"""
7from .result import Result
8from .ok import Ok
9from .err import Err
11__all__ = ["Result", "Ok", "Err"]