Type Alias RoundingStrategy

RoundingStrategy:
    | "midpointNearestEven"
    | "midpointAwayFromZero"
    | "up"
    | "down"
    | "default"
    | "banker"
    | "conservativeProfit"
    | "conservativeLoss"

Rounding strategy accepted by the *Rounded value-type factories.

The four canonical core strategies are exposed alongside four ergonomic aliases: default/banker map to midpoint nearest-even, while conservativeProfit/conservativeLoss map to round-down.