RosettaCodeData/Task/Special-variables/OCaml/special-variables-2.ocaml
2023-07-01 13:44:08 -04:00

15 lines
455 B
Text

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]. *)