Ordering
Index
Codec
__decode__
Returns the decoded
input
,Result.Ok
orResult.Error()
__encode__
Returns the encoded
input
__schema__
Returns the JSONSchema corresponding to the decoded type
Formatting
asString
Converts the given value to a String.
Indexable
indexType
Index type
at
Returns the value at the index
indexOf
Returns the integer index of a value
range
Returns an Iterable starting from
start
toend
. Ifstart
orend
is not in range then returns an empty iterable.
rangeSize
Returns the size of a range. If
start
orend
is not in range then returns 0.
Type
__inspect__
When defined, returns a custom string representation. To be useful, it should be bound to a prototype (ex: Struct)
typeName
Type string representation
asInstance
Try to convert anyValue to enum value or else returns
Option.None
hasInstance
Return
true
if the given value is an instance of the class.
Other
Equal
An ordering where a compared value is equal to another.
Greater
An ordering where a compared value is greater than another.
Less
An ordering where a compared value is less than another.
readonly[enumKeys]
An array of all keys
reverse
Reverses the
Ordering
.Less
becomesGreater
.Greater
becomesLess
.Equal
becomesEqual
.
A collection of functions to manipulate ordering values