Comparator

fun interface Comparator<in Element>(source)

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

Functions

Link copied to clipboard
abstract fun compare(left: Element, right: Element): ComparisonResult

Compares left and right elements.