Skip to content

Latest commit

 

History

History
23 lines (14 loc) · 422 Bytes

Ord.rst

File metadata and controls

23 lines (14 loc) · 422 Bytes

hask3.Data.Ord -- The Data.Ord

hask3.Data.Ord

Ordering

The ADT Ordering:

data Ordering = LT | EQ | GT deriving(Show, Eq, Ord, Bounded)

LT

EQ

GT

max

min

compare

comparing