HdrHistogram.IntHistogram.ClearCounts C# (CSharp) Method

ClearCounts() protected method

Clears the counts of this implementation.
protected ClearCounts ( ) : void
return void
        protected override void ClearCounts()
        {
            Array.Clear(_counts, 0, _counts.Length);
            _totalCount = 0;
        }