SemVer

data class SemVer(val major: Int = 0, val minor: Int = 0, val patch: Int = 0) : Comparable<SemVer>

Constructors

Link copied to clipboard
constructor(major: Int = 0, minor: Int = 0, patch: Int = 0)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val major: Int
Link copied to clipboard
val minor: Int
Link copied to clipboard
val patch: Int

Functions

Link copied to clipboard
open operator override fun compareTo(other: SemVer): Int
Link copied to clipboard
open override fun toString(): String