orders-0.1.0.0: basic orders

Safe HaskellSafe-Inferred

Data.PartialOrder

Documentation

class PartialOrder t whereSource

Methods

pcompare :: t -> t -> Maybe OrderingSource

comparable :: t -> t -> BoolSource

lte :: t -> t -> BoolSource

gte :: t -> t -> BoolSource

lt :: t -> t -> BoolSource

gt :: t -> t -> BoolSource

eq :: t -> t -> BoolSource

group3 :: (a, b, c) -> ((a, b), c)Source

ungroup3 :: ((a, b), c) -> (a, b, c)Source

group4 :: (a, b, c, d) -> ((a, b), c, d)Source

ungroup4 :: ((a, b), c, d) -> (a, b, c, d)Source

(.:) :: (c -> d) -> (a -> b -> c) -> a -> b -> dSource