HdrHistogram.LongHistogram.IncrementCountAtIndex C# (CSharp) Method

IncrementCountAtIndex() protected method

Increments the count at the given index. Will also increment the HistogramBase.TotalCount.
protected IncrementCountAtIndex ( int index ) : void
index int The index to increment the count at.
return void
        protected override void IncrementCountAtIndex(int index)
        {
            _counts[index]++;
            _totalCount++;
        }