Order25
Constructors
Combinators
Mapping
Combining
Comparisons
Instances
BigIntconstOrder instance for bigints that compares them numerically.BooleanconstOrder instance for booleans where false is considered less than true.DateconstOrder instance for Date objects that compares them chronologically by their timestamp.NumberconstOrder instance for numbers that compares them numerically.StringconstOrder instance for strings that compares them lexicographically using JavaScript's < operator.Predicates
isBetweenconstChecks whether a value is between a minimum and a maximum (inclusive) according to the given order.isGreaterThanconstChecks whether one value is strictly greater than another according to the given order.isGreaterThanOrEqualToconstChecks whether one value is greater than or equal to another according to the given order.isLessThanconstChecks whether one value is strictly less than another according to the given order.isLessThanOrEqualToconstChecks whether one value is less than or equal to another according to the given order.