|
| Org.Org.Semantic.HBase.Basic.Ordering |
|
|
|
|
|
| Synopsis |
|
|
|
| Documentation |
|
| type MaybeOrderer a = a -> a -> Maybe Ordering |
| partial order |
|
| class MaybeOrdered a where |
| has standard partial order | | | Methods | | maybeCompare :: MaybeOrderer a | | | (<) :: a -> a -> Bool | | | (>) :: a -> a -> Bool | | | (<=) :: a -> a -> Bool | | | (>=) :: a -> a -> Bool | | | max :: a -> a -> a | | first arg unless second greater | | | min :: a -> a -> a | | first arg unless second less |
| | | Instances | |
|
|
| type Orderer a = a -> a -> Ordering |
| order |
|
| class (Eq a, MaybeOrdered a) => Ordered a where |
| has standard order | | | Methods | | | | Instances | |
|
|
| Produced by Haddock version 0.6 |