HdrHistogram.IntHistogram.AddToCountAtIndex C# (CSharp) 메소드

AddToCountAtIndex() 보호된 메소드

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