Package-level declarations

Types

Link copied to clipboard
data class ClosedRange<out Element>(val start: Element, val endInclusive: Element)

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].

Link copied to clipboard
fun interface Comparator<in Element>

Provides comparison of two elements. Alternative of Kotlin stlib Comparator but with result of type ComparisonResult.

Link copied to clipboard

Describes result of two elements comparison. See Order for the main application.

Link copied to clipboard
interface Equality<in Element> : KoneContext

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.

Link copied to clipboard
interface Hashing<in Element> : KoneContext

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.

Link copied to clipboard
interface Order<in Element> : KoneContext

Describes a context that provides linear (total) order as a compareTo.

Link copied to clipboard

Describes a context that checks if the element lays in specific domain. It is usually used in pair with contexts like Equality, Order, or Hashing to check that the element lays in the second context's domain.

Link copied to clipboard

Describes that element was forcefully (via Reification.reify) checked on lying in the domain, and the check was unsuccessful.

Link copied to clipboard
data class RightOpenRange<out Element>(val start: Element, val endExclusive: Element)

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).

Properties

Link copied to clipboard

Functions

Link copied to clipboard

Returns Equality instance which Equality.equalsTo operator just uses absolute equality === operator's result as a return value.

Link copied to clipboard

Converts provided Order receiver into Comparator that delegates its Comparator.compare operator to Order.compareTo operator.

Link copied to clipboard

Shortcut to convert comparison result from Comparable's and Kotlin stlib Comparator's terms to Order's and Kone Comparator's terms.

Link copied to clipboard
Link copied to clipboard

Shortcut to convert comparison result from Comparable's and Order's terms to Kotlin stlib Comparator's and Kone Comparator's terms.

Link copied to clipboard
infix inline fun <Element> Element.coincidesWith(other: Element): Boolean
Link copied to clipboard
fun <Target, Element> compareByOrdered(vararg selectors: (Target) -> Element): Comparator<Target>
Link copied to clipboard
operator fun <Element> Element.compareTo(other: Element): Int
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard

Returns Comparator instance which Comparator.compare operator just uses Comparable.compareTo operator's result as a return value.

Link copied to clipboard

Returns Equality instance which Equality.equalsTo operator just uses Any.equals operator's result as a return value.

Link copied to clipboard

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.

Link copied to clipboard

Returns Order instance which Order.compareTo operator just uses Comparable.compareTo operator's result as a return value.

Link copied to clipboard
infix inline fun <Element> Element.eq(other: Element): Boolean
Link copied to clipboard
inline fun <Element> Equality(crossinline equalizer: (left: Element, right: Element) -> Boolean): Equality<Element>

Equality builder from an equalizer that checks equality of the left and right elements.

Link copied to clipboard
infix inline fun <Element> Element.equalsTo(other: Element): Boolean
Link copied to clipboard
infix inline fun <Element> Element.geq(other: Element): Boolean
Link copied to clipboard
infix inline fun <Element> Element.greaterThan(other: Element): Boolean
Link copied to clipboard
infix inline fun <Element> Element.greaterThanOrEqual(other: Element): Boolean
Link copied to clipboard
infix inline fun <Element> Element.gt(other: Element): Boolean
Link copied to clipboard
Link copied to clipboard
inline fun <Element> Hashing(crossinline hasher: (Element) -> Int): Hashing<Element>

Hashing builder from a hasher that computes hash of provided element.

Link copied to clipboard

Installs absolute Equality context for the given suppliedElementType into context registry builder.

Link copied to clipboard

Installs default Equality context for the given suppliedElementType into context registry builder.

Link copied to clipboard

Installs default Hashing context for the given suppliedElementType into context registry builder.

Link copied to clipboard

Installs Reification context for the given suppliedElementType into context registry builder. The installed reification just only checks that the element is of type Element.

Link copied to clipboard
infix inline fun <Element> Element.leq(other: Element): Boolean
Link copied to clipboard
infix inline fun <Element> Element.lessThen(other: Element): Boolean
Link copied to clipboard
infix inline fun <Element> Element.lessThenOrEqual(other: Element): Boolean
Link copied to clipboard

Shortcut for getting Equality context for the given suppliedElementType. Throws if there is no such context in the registry.

Link copied to clipboard

Shortcut for getting Equality context for the given suppliedElementType or default context if there is no such context in the registry.

Link copied to clipboard

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.

Link copied to clipboard

Shortcut for getting Equality context for the given suppliedElementType or null if there is no such context in the registry.

Link copied to clipboard

Shortcut for getting Hashing context for the given suppliedElementType. Throws if there is no such context in the registry.

Link copied to clipboard

Shortcut for getting Hashing context for the given suppliedElementType or default context if there is no such context in the registry.

Link copied to clipboard

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.

Link copied to clipboard

Shortcut for getting Hashing context for the given suppliedElementType or null if there is no such context in the registry.

Link copied to clipboard

Shortcut for getting Order context for the given suppliedElementType. Throws if there is no such context in the registry.

Link copied to clipboard

Shortcut for getting Order context for the given suppliedElementType or default context if there is no such context in the registry.

Link copied to clipboard
inline fun <Element> KoneContextRegistry.loadOrderForOrElse(suppliedElementType: SuppliedType<Element>, block: () -> Order<Element>): Order<Element>

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.

Link copied to clipboard

Shortcut for getting Order context for the given suppliedElementType or null if there is no such context in the registry.

Link copied to clipboard

Shortcut for getting Reification context for the given suppliedElementType. Throws if there is no such context in the registry.

Link copied to clipboard

Shortcut for getting Reification context for the given suppliedElementType or default context if there is no such context in the registry.

Link copied to clipboard

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.

Link copied to clipboard

Shortcut for getting Reification context for the given suppliedElementType or null if there is no such context in the registry.

Link copied to clipboard
infix inline fun <Element> Element.lt(other: Element): Boolean
Link copied to clipboard
fun <Element> max(vararg elements: Element): Element
Link copied to clipboard
fun <Element> min(vararg elements: Element): Element
Link copied to clipboard
infix inline fun <Element> Element.neq(other: Element): Boolean
Link copied to clipboard
infix inline fun <Element> Element.notCoincidesWith(other: Element): Boolean
Link copied to clipboard
infix inline fun <Element> Element.notEqualsTo(other: Element): Boolean
Link copied to clipboard
inline fun <Element> Order(comparator: Comparator<Element>): Order<Element>
inline fun <Element> Order(crossinline comparator: (left: Element, right: Element) -> ComparisonResult): Order<Element>

Order builder from a comparator that compares the left and right elements to each other.

Link copied to clipboard

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.

Link copied to clipboard

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.

Link copied to clipboard

Reification builder from a reified type Element that is used to cast elements.

Link copied to clipboard
fun reificationException(message: String = "Value can not be reified"): Nothing

Throws ReificationException with the provided message.

Link copied to clipboard
fun <Element> reify(element: Any?): Element
Link copied to clipboard
fun <Element> reifyMaybe(element: Any?): Maybe<Element>
Link copied to clipboard
fun <Element> reifyOrNull(element: Any?): Element?
Link copied to clipboard
infix inline fun <Element> Any?.tryEq(other: Element): Boolean
Link copied to clipboard
infix inline fun <Element> Any?.tryEqualsTo(other: Element): Boolean
Link copied to clipboard
infix inline fun <Element> Any?.tryNeq(other: Element): Boolean
Link copied to clipboard
infix inline fun <Element> Any?.tryNotEqualsTo(other: Element): Boolean