package experimental
- Alphabetic
- Public
- All
Type Members
-
final
case class
VersionTree extends AnyVal with Product with Serializable
The order preserving tree, containing all versions and satisfying following properties: - A version is _clustered_ with previous ones if higher group matches e.g.
The order preserving tree, containing all versions and satisfying following properties: - A version is _clustered_ with previous ones if higher group matches e.g. for 1-0-0 and 1-0-1 both higher groups (MODEL and REVISION) match e.g. for 1-0-1 and 1-1-0 only MODEL matches, so same MODEL cluster, but new REVISION cluster - A version spawns a new cluster if previous higher group is either smaller or larger e.g. 1-0-0, 1-1-0, 1-0-1 is a valid version list, but has three separate REVISION clusters - There's no gaps between versions (e.g. [1-0-0, 1-0-2] is impossible) - Tree is non-empty and always starts with 1-0-0
Value Members
-
object
Bumps
Module responsible for version-bump recognition
-
object
VersionTree extends Serializable
Group - continuous, but possibly *unclosed* sequence of child versions (opposed to always closed Set?), e.g.
Group - continuous, but possibly *unclosed* sequence of child versions (opposed to always closed Set?), e.g. 2,3 additions of 0 revision (but 0,1,4,5 are "outside")
Set - continuous and always closed sequence of child versions (opposed to possibly *unclosed* Group) e.g. 0,1,2,3,4,5 additions of 0 revision (nothing else in the revision)
Highest - largest number in a whole Set (5th addition) Latest - largest number in a whole Group (3rd addition)
case class X is a group, it has information about all its Xs and children Ys