Module Base.Int_math

This module implements derived integer operations (e.g., modulo, rounding to multiples) based on other basic operations.

module type Make_arg = sig ... end
module Make : functor (X : Make_arg) -> sig ... end

Derived operations common to various integer modules.

module Private : sig ... end