KotlinVersion
class KotlinVersion(val major: Int, val minor: Int, val patch: Int) : Comparable<KotlinVersion> (source)
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).
Since Kotlin
1.1class KotlinVersion(val major: Int, val minor: Int, val patch: Int) : Comparable<KotlinVersion> (source)
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).
Since Kotlin
1.1Types
Properties
Functions
Link copied to clipboard
Returns true
if this version is not less than the version specified with the provided major and minor components.
Since Kotlin 1.1
Returns true
if this version is not less than the version specified with the provided major, minor and patch components.
Since Kotlin 1.1