Module type Int.S_unbounded
val of_float : float -> tval to_float : t -> floatval of_int_exn : int -> tval to_int_exn : t -> intval hash_fold_t : Hash.state -> t -> Hash.stateval hash : t -> Hash.hash_valueval t_of_sexp : Sexp.t -> tval sexp_of_t : t -> Sexp.tval of_string : string -> tval to_string : t -> stringval (>=) : t -> t -> boolval (<=) : t -> t -> boolval (=) : t -> t -> boolval (>) : t -> t -> boolval (<) : t -> t -> boolval (<>) : t -> t -> boolval equal : t -> t -> boolval compare : t -> t -> intval min : t -> t -> tval max : t -> t -> tval ascending : t -> t -> intval descending : t -> t -> intval between : t -> low:t -> high:t -> boolval clamp_exn : t -> min:t -> max:t -> tval clamp : t -> min:t -> max:t -> t Or_error.t
val comparator : (t, comparator_witness) Comparator.comparatorval validate_lbound : min:t Maybe_bound.t -> t Validate.checkval validate_ubound : max:t Maybe_bound.t -> t Validate.checkval validate_bound : min:t Maybe_bound.t -> max:t Maybe_bound.t -> t Validate.checkval pp : Formatter.t -> t -> unitval validate_positive : t Validate.checkval validate_non_negative : t Validate.checkval validate_negative : t Validate.checkval validate_non_positive : t Validate.checkval is_positive : t -> boolval is_non_negative : t -> boolval is_negative : t -> boolval is_non_positive : t -> boolval sign : t -> Base__.Sign0.t
module Hex : sig ... endval to_string_hum : ?delimiter:char -> t -> stringdelimiteris an underscore by default.
val zero : tval one : tval minus_one : tval (+) : t -> t -> tval (-) : t -> t -> tval (*) : t -> t -> tval (**) : t -> t -> tInteger exponentiation
val neg : t -> tval (~-) : t -> tval (/%) : t -> t -> tval (%) : t -> t -> tval (/) : t -> t -> tval rem : t -> t -> tval (//) : t -> t -> floatFloat division of integers.
val round : ?dir:[ `Down | `Nearest | `Up | `Zero ] -> t -> to_multiple_of:t -> tval round_towards_zero : t -> to_multiple_of:t -> tval round_down : t -> to_multiple_of:t -> tval round_up : t -> to_multiple_of:t -> tval round_nearest : t -> to_multiple_of:t -> tval abs : t -> tReturns the absolute value of the argument. May be negative if the input is
min_value.
val succ : t -> tval pred : t -> tval pow : t -> t -> tpow base exponentreturnsbaseraised to the power ofexponent. It is OK ifbase <= 0.powraises ifexponent < 0, or an integer overflow would occur.
val bit_and : t -> t -> tThese are identical to
land,lor, etc. except they're not infix and have different names.
val bit_or : t -> t -> tval bit_xor : t -> t -> tval bit_not : t -> tval popcount : t -> intReturns the number of 1 bits in the binary representation of the input.
val decr : t Caml.ref -> unitval incr : t Caml.ref -> unitval of_int32_exn : int32 -> tval to_int32_exn : t -> int32val of_int64_exn : int64 -> tval to_int64 : t -> int64val of_nativeint_exn : nativeint -> tval to_nativeint_exn : t -> nativeintval of_float_unchecked : float -> tof_float_uncheckedtruncates the given floating point number to an integer, rounding towards zero. The result is unspecified if the argument is nan or falls outside the range of representable integers.
module O : sig ... endA sub-module designed to be opened to make working with ints more convenient.