ZVON > References > Haskell reference
| Indexes | Syntax | >> Prelude << | Ratio | Complex | Numeric | Ix | Array | List | Maybe | Char | Monad | IO | Directory | System | Time | Locale | CPUTime | Random

Module: Prelude
Function: succ
Type: Enum a => a -> a
Class: Enum
Description: returns following item in an enumeration (integers and characters in the following examples).
Related: enumFrom, enumFromThen, enumFromThenTo, enumFromTo, fromEnum, pred, toEnum

Example 1

Input: succ 5

Output: 6

Example 2

Input: succ 'a'

Output: 'b'

Example 3
Program source: 
data XXX = AA|BB|CC|DD deriving (Enum, Show)

Input: succ BB

Output: CC