Example #1
0
 public HistogramHighBucketsStore(double[] bucketBounds)
 {
     _bounds = bucketBounds;
     Buckets = new ThreadSafeLong[bucketBounds.Length + 1]; // Allocate one more element for +Inf value
 }