Package-level declarations
Types
A wrapper data class that contains values start and endInclusive to be used by ClosedRange.contains operator that checks if the provided value lies in a closed interval [start; endInclusive]
.
Provides comparison of two elements. Alternative of Kotlin stlib Comparator but with result of type ComparisonResult.
Describes result of two elements comparison. See Order for the main application.
Describes a context that provides equality equivalence relation on the set of elements of type Element (or some subdomain). The relation is described by equalsTo function.
Describes a context that provides hash operator besides inherited coincidesWith operator. This operator should return the same value for elements that are equal according to coincidesWith operator.
Describes a context that provides linear (total) order as a compareTo.
Describes that element was forcefully (via Reification.reify) checked on lying in the domain, and the check was unsuccessful.
A wrapper data class that contains values start and endExclusive to be used by RightOpenRange.contains operator that checks if the provided value lies in a right-open interval [start; endExclusive)
.
Functions
Returns Equality instance which Equality.equalsTo operator just uses absolute equality ===
operator's result as a return value.
Converts provided Order receiver into Comparator that delegates its Comparator.compare operator to Order.compareTo operator.
Shortcut to convert comparison result from Comparable's and Kotlin stlib Comparator's terms to Order's and Kone Comparator's terms.
Converts Kotlin stlib Comparator to Kone Comparator.
Shortcut to convert comparison result from Comparable's and Order's terms to Kotlin stlib Comparator's and Kone Comparator's terms.
Converts Kone Comparator to Kotlin stlib Comparator.
Returns Comparator instance which Comparator.compare operator just uses Comparable.compareTo operator's result as a return value.
Returns Equality instance which Equality.equalsTo operator just uses Any.equals operator's result as a return value.
Returns Hashing instance which Equality.coincidesWith operator just uses Any.equals operator's result as a return value and which Hashing.hash operator just uses Any.hashCode operator's result as a return value.
Returns Order instance which Order.compareTo operator just uses Comparable.compareTo operator's result as a return value.
Installs absolute Equality context for the given suppliedElementType into context registry builder.
Installs default Equality context for the given suppliedElementType into context registry builder.
Installs default Hashing context for the given suppliedElementType into context registry builder.
Installs Reification context for the given suppliedElementType into context registry builder. The installed reification just only checks that the element is of type Element.
Shortcut for getting Equality context for the given suppliedElementType. Throws if there is no such context in the registry.
Shortcut for getting Equality context for the given suppliedElementType or default context if there is no such context in the registry.
Shortcut for getting Equality context for the given suppliedElementType or compute block to get such context if there is no such context in the registry.
Shortcut for getting Equality context for the given suppliedElementType or null
if there is no such context in the registry.
Shortcut for getting Hashing context for the given suppliedElementType. Throws if there is no such context in the registry.
Shortcut for getting Hashing context for the given suppliedElementType or default context if there is no such context in the registry.
Shortcut for getting Hashing context for the given suppliedElementType or compute block to get such context if there is no such context in the registry.
Shortcut for getting Hashing context for the given suppliedElementType or null
if there is no such context in the registry.
Shortcut for getting Order context for the given suppliedElementType. Throws if there is no such context in the registry.
Shortcut for getting Order context for the given suppliedElementType or default context if there is no such context in the registry.
Shortcut for getting Order context for the given suppliedElementType or compute block to get such context if there is no such context in the registry.
Shortcut for getting Order context for the given suppliedElementType or null
if there is no such context in the registry.
Shortcut for getting Reification context for the given suppliedElementType. Throws if there is no such context in the registry.
Shortcut for getting Reification context for the given suppliedElementType or default context if there is no such context in the registry.
Shortcut for getting Reification context for the given suppliedElementType or compute block to get such context if there is no such context in the registry.
Shortcut for getting Reification context for the given suppliedElementType or null
if there is no such context in the registry.
Order builder from a comparator that compares the left
and right
elements to each other.
Creates ClosedRange instance to be used by ClosedRange.contains operator that checks if the provided value lies in a closed interval from this to other.
Creates RightOpenRange instance to be used by RightOpenRange.contains operator that checks if the provided value lies in a right-open interval from this to other.
Reification builder from a reified type Element that is used to cast elements.
Throws ReificationException with the provided message.