Skip to content

Latest commit

 

History

History
23 lines (14 loc) · 420 Bytes

Ord.rst

File metadata and controls

23 lines (14 loc) · 420 Bytes

:mod:`hask.Data.Ord` -- The Data.Ord

.. automodule:: hask.Data.Ord

.. object:: Ordering

   The ADT Ordering::

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

.. object:: LT
.. object:: EQ
.. object:: GT

.. autofunction:: max

.. autofunction:: min

.. autofunction:: compare

.. autofunction:: comparing