ClosedRange

data class ClosedRange<out Element>(val start: Element, val endInclusive: Element)(source)

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

Constructors

Link copied to clipboard
constructor(start: Element, endInclusive: Element)

Properties

Link copied to clipboard
Link copied to clipboard

Functions

Link copied to clipboard
operator fun <Element> ClosedRange<Element>.contains(element: Element): Boolean