HdrHistogram.LongHistogram.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)
        {
            Array.Copy(_counts, target, target.Length);
        }
    }