| 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: | pred |
| Type: | Enum a => a -> a |
| Class: | Enum |
| Description: | returns preceding item in an enumeration (integers and characters in the following examples). |
| Related: | enumFrom, enumFromThen, enumFromThenTo, enumFromTo, fromEnum, succ, toEnum |
Input: pred 5
Output: 4
Input: pred 'B'
Output: 'A'