HdrHistogram.IntHistogram.AddToCountAtIndex C# (CSharp) Method

AddToCountAtIndex() protected method

Adds the specified amount to the count of the provided index. Also increments the HistogramBase.TotalCount by the same amount.
protected AddToCountAtIndex ( int index, long addend ) : void
index int The index to increment.
addend long The amount to increment by.
return void
        protected override void AddToCountAtIndex(int index, long addend)
        {
            _counts[index] += (int)addend;
            _totalCount += addend;
        }