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 |
---|---|
Class: | Bounded |
Instances: | Char, Int |
class Bounded a where minBound :: a maxBound :: a
instance Bounded Char where minBound = '\0' maxBound = '\xffff'
instance Bounded Int where ...