Module Caml.Bool
Booleans
type t= bool=|false|trueThe type of booleans (truth values).
The constructors
falseandtrueare included here so that they have paths, but they are not intended to be used in user-defined data types.
Caml.Booltype t = bool = | false |
| true |
The type of booleans (truth values).
The constructors false and true are included here so that they have paths, but they are not intended to be used in user-defined data types.