KotlinVersion
class KotlinVersion : Comparable<KotlinVersion>Represents a version of the Kotlin standard library.
major, minor and patch are integer components of a version, they must be non-negative and not greater than 255 (MAX_COMPONENT_VALUE).
Constructors
Properties
Functions
compareTo
fun compareTo(other: KotlinVersion): Intequals
Indicates whether some other object is "equal to" this one. Implementations must fulfil the following requirements:
fun equals(other: Any?): BooleanhashCode
Returns a hash code value for the object. The general contract of hashCode is:
fun hashCode(): IntisAtLeast
toString
Returns the string representation of this version
fun toString(): StringCompanion Object Properties
CURRENT
Returns the current version of the Kotlin standard library.
val CURRENT: KotlinVersionMAX_COMPONENT_VALUE
Maximum value a version component can have, a constant value 255.
const val MAX_COMPONENT_VALUE: IntExtension Functions
coerceAtLeast
Ensures that this value is not less than the specified minimumValue.
fun <T : Comparable<T>> T.coerceAtLeast(minimumValue: T): TcoerceAtMost
Ensures that this value is not greater than the specified maximumValue.
fun <T : Comparable<T>> T.coerceAtMost(maximumValue: T): TcoerceIn
Ensures that this value lies in the specified range minimumValue..maximumValue.
fun <T : Comparable<T>> T.coerceIn(
minimumValue: T?,
maximumValue: T?
): TEnsures that this value lies in the specified range.
fun <T : Comparable<T>> T.coerceIn(
range: ClosedFloatingPointRange<T>
): Tfun <T : Comparable<T>> T.coerceIn(range: ClosedRange<T>): TrangeTo
Creates a range from this Comparable value to the specified that value.
operator fun <T : Comparable<T>> T.rangeTo(
that: T
): ClosedRange<T>