ZVON > References > Haskell reference |
Intro / Search / ZVON |
| Indexes | Syntax | >> Prelude << | Ratio | Complex | Numeric | Ix | Array | List | Maybe | Char | Monad | IO | Directory | System | Time | Locale | CPUTime | Random |
Module: | Prelude |
---|---|
Function: | not |
Type: | Bool -> Bool |
Description: | boolean not |
Related: | (&&), all, and, any, elem, notElem, or, (||) |
Keywords: | boolean |
Input: not True
Output: False
Input: not (1>2)
Output: True