Package-level declarations

Types

Link copied to clipboard
interface Order<T> : Comparator<T>

Interface representing an order of elements.

Link copied to clipboard
class ReverseOrder<T>(base: Order<T>) : Order<T>

A decorator class that reverses the order of a given Order.

Link copied to clipboard
class StrengthOrder(newStrength: Int) : Order<ViewData>

An Order implementation that compares ViewData objects based on their labels, using a specified strength level for the Collator.