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

1""" 

2Either monad for representing computations that can succeed or fail. 

3 

4Scala-inspired Either type providing Left and Right for error handling patterns. 

5""" 

6 

7from .either import Either 

8from .left import Left 

9from .right import Right 

10 

11__all__ = ["Either", "Left", "Right"]