module Int_math: sig
.. end
This module is not exposed in Core.Std. Instead, these functions are accessed and
commented in the various Core modules implementing Int_intf.S
.
module type T = sig
.. end
module Make: functor (
X
:
T
) ->
sig
.. end
derived operations common to various integer modules
val int_pow : int -> int -> int
val int64_pow : int64 -> int64 -> int64