Module type Int_intf.S


module type S = sig .. end

type t 
include Binable
include Comparable
include Floatable
include Hashable
include Setable
include Sexpable
include Stringable
val zero : t
val one : t
val minus_one : t
val (+) : t -> t -> t
val (-) : t -> t -> t
val ( * ) : t -> t -> t
val (/) : t -> t -> t
val add : t -> t -> t
val div : t -> t -> t
val mul : t -> t -> t
val neg : t -> t
val rem : t -> t -> t
val sub : t -> t -> t
val succ : t -> t
val pred : t -> t
val abs : t -> t
val max_int : t
val min_int : t
val logand : t -> t -> t
val logor : t -> t -> t
val logxor : t -> t -> t
val lognot : t -> t
val decr : t Pervasives.ref -> unit
val incr : t Pervasives.ref -> unit
val shift_left : t -> int -> t
val shift_right : t -> int -> t
val shift_right_logical : t -> int -> t