Kotlin Version
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.1Constructors
Link copied to clipboard
Creates a version from major and minor components, leaving patch component zero.
Link copied to clipboard
Creates a version from all three components.
Types
Functions
Link copied to clipboard