HdrHistogram.IntHistogram.Copy C# (CSharp) Метод

Copy() публичный Метод

Create a copy of this histogram, complete with data and everything.
public Copy ( ) : HistogramBase
Результат HistogramBase
        public override HistogramBase Copy()
        {
            var copy = new IntHistogram(LowestTrackableValue, HighestTrackableValue, NumberOfSignificantValueDigits);
            copy.Add(this);
            return copy;
        }