IntOpsUnified interface for integer types.
module type IntOpsBase = sig ... endmodule type IntOps = sig ... endmodule NIntOpsBase : IntOpsBase with type t = intmodule Int32OpsBase : IntOpsBase with type t = int32module Int64OpsBase : IntOpsBase with type t = int64module BigIntOpsBase : IntOpsBase with type t = Z.tmodule IntOpsDecorator (B : IntOpsBase) : sig ... endmodule BigIntOps : sig ... endmodule NIntOps : sig ... endmodule Int32Ops : sig ... endmodule Int64Ops : sig ... end