HdrHistogram.IntHistogram.CopyCountsInto C# (CSharp) Method

CopyCountsInto() protected method

Copies the internal counts array into the supplied array.
protected CopyCountsInto ( long target ) : void
target long The array to write each count value into.
return void
        protected override void CopyCountsInto(long[] target)
        {
            for (int i = 0; i < target.Length; i++)
            {
                target[i] = _counts[i];
            }
        }
    }