Coverage for src/monadc/either/__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"""
2Either monad for representing computations that can succeed or fail.
4Scala-inspired Either type providing Left and Right for error handling patterns.
5"""
7from .either import Either
8from .left import Left
9from .right import Right
11__all__ = ["Either", "Left", "Right"]