SemVer

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

Semantic version representation for mod metadata.

Constructors

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

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