Represents a pair of values: a numeric index represents the starting offset and an array of elements.
This provides a convenient shorthand for scenarios where you need to associate a contiguous span of values with a specific index or position.
The MinorTuple is types as an Array with 2 elements for performance reasons but can be logically conceptualized as the following type.
type MinorTuple<T = any> = {minor: number;values: T[];}; Copy
type MinorTuple<T = any> = {minor: number;values: T[];};
Represents a pair of values: a numeric index represents the starting offset and an array of elements.
This provides a convenient shorthand for scenarios where you need to associate a contiguous span of values with a specific index or position.