Module Stdlib.Bool
Booleans
type t
= bool
=
|
false
|
true
The type of booleans (truth values).
The constructors
false
andtrue
are included here so that they have paths, but they are not intended to be used in user-defined data types.
Stdlib.Bool
type 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.