| |||||||||||||
| |||||||||||||
| |||||||||||||
Description | |||||||||||||
The Bool type and related functions. | |||||||||||||
Synopsis | |||||||||||||
| |||||||||||||
Booleans | |||||||||||||
data Bool | |||||||||||||
| |||||||||||||
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.6.1 |