HdrHistogram.IntHistogram.IntHistogram C# (CSharp) Method

IntHistogram() public method

Construct an IntHistogram given the highest value to be tracked and a number of significant decimal digits. The histogram will be constructed to implicitly track(distinguish from 0) values as low as 1.
public IntHistogram ( long highestTrackableValue, int numberOfSignificantValueDigits ) : System
highestTrackableValue long The highest value to be tracked by the histogram. Must be a positive integer that is >= 2.
numberOfSignificantValueDigits int The number of significant decimal digits to which the histogram will maintain value resolution and separation.Must be a non-negative integer between 0 and 5.
return System
        public IntHistogram(long highestTrackableValue, int numberOfSignificantValueDigits)
            : this(1, highestTrackableValue, numberOfSignificantValueDigits)
        {
        }

Same methods

IntHistogram::IntHistogram ( long lowestTrackableValue, long highestTrackableValue, int numberOfSignificantValueDigits ) : System
IntHistogram::IntHistogram ( long instanceId, long lowestTrackableValue, long highestTrackableValue, int numberOfSignificantValueDigits ) : System