Module type Types.Unsigned
Module type for unsigned integers.
val t : t Ctypes.typ
include Unsigned.S with type Unsigned.t := t
val add : t -> t -> tval sub : t -> t -> tval mul : t -> t -> tval div : t -> t -> tval rem : t -> t -> tval max_int : tval logand : t -> t -> tval logor : t -> t -> tval logxor : t -> t -> tval shift_left : t -> int -> tval shift_right : t -> int -> tval of_int : int -> tval to_int : t -> intval of_int64 : int64 -> tval to_int64 : t -> int64val of_string : string -> tval to_string : t -> stringval zero : tval one : tval lognot : t -> tval succ : t -> tval pred : t -> tval compare : t -> t -> intval equal : t -> t -> boolval max : t -> t -> tval min : t -> t -> tval pp : Stdlib.Format.formatter -> t -> unit
module Infix : sig ... end