sampleInputPointCount static method

int sampleInputPointCount(
  1. List<ProcessedSeries> processed
)

Implementation

static int sampleInputPointCount(List<ProcessedSeries> processed) {
  var total = 0;
  for (final s in processed) {
    total += s.stats.count;
  }
  return total;
}