OrderedSetΒΆ
catdef.spad line 1128 [edit on github]
The class of totally ordered sets, that is, sets such that for each pair of elements (a, b)
exactly one of the following relations holds a<b or a=b or b<a
and the relation is transitive, i.e. a<b and b<c => a<c
. This order should be the natural order on given structure.
- <=: (%, %) -> Boolean
from PartialOrder
- <: (%, %) -> Boolean
from PartialOrder
- >=: (%, %) -> Boolean
from PartialOrder
- >: (%, %) -> Boolean
from PartialOrder
- coerce: % -> OutputForm
from CoercibleTo OutputForm
- latex: % -> String
from SetCategory
- max: (%, %) -> %
max(x,y)
returns the maximum ofx
andy
relative to"<"
.
- min: (%, %) -> %
min(x,y)
returns the minimum ofx
andy
relative to"<"
.
- smaller?: (%, %) -> Boolean
from Comparable