Module type Types.Signed

Module type for signed integers.

type t
val t : t Ctypes.typ
include Signed.S with type t := t
module Infix : sig ... end
val add : t -> t -> t
val sub : t -> t -> t
val mul : t -> t -> t
val div : t -> t -> t
val rem : t -> t -> t
val max_int : t
val logand : t -> t -> t
val logor : t -> t -> t
val logxor : t -> t -> t
val shift_left : t -> int -> t
val shift_right : t -> int -> t
val of_int : int -> t
val to_int : t -> int
val of_string : string -> t
val to_string : t -> string
val to_hexstring : t -> string
val zero : t
val one : t
val lognot : t -> t
val succ : t -> t
val pred : t -> t
val compare : t -> t -> int
val equal : t -> t -> bool
val max : t -> t -> t
val min : t -> t -> t
val of_string_opt : string -> t option
val pp : Stdlib.Format.formatter -> t -> unit
val pp_hex : Stdlib.Format.formatter -> t -> unit
val neg : t -> t
val abs : t -> t
val minus_one : t
val min_int : t
val shift_right_logical : t -> int -> t
val of_nativeint : nativeint -> t
val to_nativeint : t -> nativeint
val of_int64 : int64 -> t
val to_int64 : t -> int64