HdrHistogram.LongHistogram.GetCountAtIndex C# (CSharp) Method

GetCountAtIndex() protected method

Gets the number of recorded values at a given index.
protected GetCountAtIndex ( int index ) : long
index int The index to get the count for
return long
        protected override long GetCountAtIndex(int index)
        {
            return _counts[index];
        }