Coverage for src / invariant / ops / __init__.py: 100.00%
3 statements
« prev ^ index » next coverage.py v7.13.5, created at 2026-05-03 19:45 +0000
« prev ^ index » next coverage.py v7.13.5, created at 2026-05-03 19:45 +0000
1"""Standard operations library."""
3from invariant.ops import poly, stdlib
4from invariant.ops.stdlib import (
5 add,
6 coalesce,
7 dict_get,
8 identity,
9 multiply,
10)
12__all__ = [
13 "poly",
14 "stdlib",
15 "identity",
16 "add",
17 "multiply",
18 "dict_get",
19 "coalesce",
20]