armos v0.2.4 (2017-08-20T09:34:11Z)
Dub
Repo
SemVer
armos
utils
semver
struct
SemVer {
int
major
;
int
minor
;
int
patch
;
this
(string semver);
this
(uint major, uint minor, uint patch);
int
opCmp
(SemVer rhs);
SemVer
opBinary
(SemVer rhs);
string
toString
();
}
Constructors
this
this
(string semver)
this
this
(uint major, uint minor, uint patch)
Members
Functions
opBinary
SemVer
opBinary
(SemVer rhs)
opCmp
int
opCmp
(SemVer rhs)
toString
string
toString
()
Variables
major
int
major
;
minor
int
minor
;
patch
int
patch
;
Meta
Source
See Implementation
armos
utils
semver
structs
SemVer