Represents a collection of MajorTuples, used to store data for a 2d collection of tuples.
Validity Requirements:
The major values within a collection of MajorTuples must be sorted in ascending order.
The minor values within each MinorTuple of a MajorTuple must be sorted in ascending order.
The minors (array of MinorTuples) within a MajorTuple must not overlap; their ranges
(defined by the minor values and the length of the values arrays) should be mutually exclusive.
Represents a collection of
MajorTuple
s, used to store data for a 2d collection of tuples. Validity Requirements:major
values within a collection ofMajorTuple
s must be sorted in ascending order.minor
values within eachMinorTuple
of aMajorTuple
must be sorted in ascending order.minors
(array ofMinorTuple
s) within aMajorTuple
must not overlap; their ranges (defined by theminor
values and thelength
of thevalues
arrays) should be mutually exclusive.