Module

Type.Data.Ordering

#OProxy

data OProxy ordering

Constructors

#IsOrdering

class IsOrdering ordering  where

Members

Instances

#reifyOrdering

reifyOrdering :: forall r. Ordering -> (forall proxy o. IsOrdering o => proxy o -> r) -> r

Use a value level Ordering as a type-level Ordering

#Append

class Append lhs rhs output | lhs -> rhs output

Instances

#append

append :: forall proxy l r o. Append l r o => proxy l -> proxy r -> Proxy o

#Invert

class Invert ordering result | ordering -> result

Instances

#invert

invert :: forall proxy i o. Invert i o => proxy i -> Proxy o

#equals

equals :: forall proxy l r o. Equals l r o => proxy l -> proxy r -> Proxy o

Re-exports from Prim.Ordering

#Ordering

data Ordering :: Type

The Ordering kind represents the three possibilities of comparing two types of the same kind: LT (less than), EQ (equal to), and GT (greater than).

#LT

data LT :: Ordering

The 'less than' ordering type.

#GT

data GT :: Ordering

The 'greater than' ordering type.

#EQ

data EQ :: Ordering

The 'equal to' ordering type.

Modules