Example #1
0
 void IncrementSubBucket()
 {
     _freshSubBucket = true;
     // Take on the next index:
     CurrentIndex++;
     CurrentValueAtIndex = Histogram.ValueFromIndex(CurrentIndex);
     // Figure out the value at the next index (used by some iterators):
     NextValueAtIndex = Histogram.ValueFromIndex(CurrentIndex + 1);
 }
Example #2
0
 void incrementSubBucket()
 {
     freshSubBucket = true;
     // Take on the next index:
     currentIndex++;
     currentValueAtIndex = histogram.ValueFromIndex(currentIndex);
     // Figure out the value at the next index (used by some iterators):
     nextValueAtIndex = histogram.ValueFromIndex(currentIndex + 1);
 }