package integers
Install
dune-project
Dependency
Authors
Maintainers
Sources
sha256=b3d554125aefebe65e4e7d350fd526f7b788d74503daee1f1ec60a425184a73c
md5=0d485413bf08a238a424c0f573d5c3c3
doc/integers/Unsigned/UInt8/index.html
Module Unsigned.UInt8
Unsigned 8-bit integer type and operations.
Division. Raise Division_by_zero if the second argument is zero.
Integer remainder. Raise Division_by_zero if the second argument is zero.
val max_int : tThe greatest representable integer.
shift_left x y shifts x to the left by y bits.
shift_right x y shifts x to the right by y bits.
val of_int : int -> tConvert the given int value to an unsigned integer.
val to_int : t -> intConvert the given unsigned integer value to an int.
val of_int64 : int64 -> tConvert the given int64 value to an unsigned integer.
val to_int64 : t -> int64Convert the given unsigned integer value to an int64.
val of_string : string -> tConvert the given string to an unsigned integer. Raise Failure "int_of_string" if the given string is not a valid representation of an unsigned integer.
val to_string : t -> stringReturn the string representation of its argument.
val zero : tThe integer 0.
val one : tThe integer 1.
The comparison function for unsigned integers, with the same specification as Pervasives.compare.
module Infix : sig ... endInfix names for the unsigned integer operations.