HdrHistogram.LongHistogram.SetCountAtIndex C# (CSharp) Method

SetCountAtIndex() protected method

Sets the count at the given index.
protected SetCountAtIndex ( int index, long value ) : void
index int The index to be set
value long The value to set
return void
        protected override void SetCountAtIndex(int index, long value)
        {
            _counts[index] = value;
        }