getValueSize method

int getValueSize()

Returns the size of each value (that is the length of the values array divided by the length of the times array).

Implementation

int getValueSize() {
  return values.length ~/ times.length;
}