| |||||||||
| |||||||||
| |||||||||
Description | |||||||||
The Bool type and related functions. | |||||||||
Synopsis | |||||||||
| |||||||||
Booleans | |||||||||
Bool (False, True) | |||||||||
Operations | |||||||||
(&&) :: Bool -> Bool -> Bool | |||||||||
Boolean "and" | |||||||||
(||) :: Bool -> Bool -> Bool | |||||||||
Boolean "or" | |||||||||
not :: Bool -> Bool | |||||||||
Boolean "not" | |||||||||
otherwise :: Bool | |||||||||
otherwise is defined as the value True. It helps to make guards more readable. eg. f x | x < 0 = ... | otherwise = ... | |||||||||
Produced by Haddock version 2.4.2 |