RosettaCodeData/Task/Special-variables/OCaml/special-variables-2.ml
2024-10-16 18:07:41 -07:00

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