HdrHistogram.IntHistogram.AddToCountAtIndex C# (CSharp) Méthode

AddToCountAtIndex() protected méthode

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.
Résultat void
        protected override void AddToCountAtIndex(int index, long addend)
        {
            _counts[index] += (int)addend;
            _totalCount += addend;
        }