Maintainer | Fumiaki Kinsohita <fumiexcel@gmail.com> |
---|---|
Safe Haskell | Safe-Inferred |
Data.Ord.Bounded
Description
Creating bounded value from any Ord instance
- data GBounded min max a
- type BoundedMin = GBounded () Void
- type BoundedMax = GBounded Void ()
- type BoundedBoth = GBounded () ()
- minimumBound :: GBounded () max a
- maximumBound :: GBounded min () a
Documentation
type BoundedMin = GBounded () VoidSource
type BoundedMax = GBounded Void ()Source
type BoundedBoth = GBounded () ()Source
minimumBound :: GBounded () max aSource
Provided minimum value.
maximumBound :: GBounded min () aSource
Provided maximum value.