Kotlin Version
class KotlinVersion(major: Int, minor: Int, patch: Int) : Comparable<KotlinVersion>
Content copied to clipboard
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.1
Constructors
KotlinVersion
Link copied to clipboard
Creates a version from major and minor components, leaving patch component zero.
KotlinVersion
Link copied to clipboard
Creates a version from all three components.
Types
Functions
compare To
Link copied to clipboard