15 lines
455 B
OCaml
15 lines
455 B
OCaml
val max_int : int
|
|
(** The greatest representable integer. *)
|
|
|
|
val min_int : int
|
|
(** The smallest representable integer. *)
|
|
|
|
val max_float : float
|
|
(** The largest positive finite value of type [float]. *)
|
|
|
|
val min_float : float
|
|
(** The smallest positive, non-zero, non-denormalized value of type [float]. *)
|
|
|
|
val epsilon_float : float
|
|
(** The difference between [1.0] and the smallest exactly representable
|
|
floating-point number greater than [1.0]. *)
|