Module Stdlib.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.
Stdlib.Booltype t = bool = | false | |
| true | The type of booleans (truth values). The constructors |