mathy/mathstream/__init__.py
2025-11-05 08:35:01 +01:00

21 lines
424 B
Python

from .engine import clear_logs, add, sub, mul, div, mod, pow, is_even, is_odd
from .exceptions import MathStreamError, DivideByZeroError
from .number import StreamNumber
from .utils import collect_garbage
__all__ = [
"clear_logs",
"collect_garbage",
"add",
"sub",
"mul",
"div",
"mod",
"pow",
"is_even",
"is_odd",
"StreamNumber",
"MathStreamError",
"DivideByZeroError",
]