You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
thrownewArgumentOutOfRangeException(nameof(fromHistogram),$"The other histogram covers a wider range ({fromHistogram.HighestTrackableValue} than this one ({HighestTrackableValue}).");
283
+
thrownewArgumentOutOfRangeException(nameof(fromHistogram),$"The other histogram covers a wider range ({fromHistogram.HighestTrackableValue}) than this one ({HighestTrackableValue}).");
284
284
}
285
285
if((BucketCount==fromHistogram.BucketCount)&&
286
286
(SubBucketCount==fromHistogram.SubBucketCount)&&
@@ -305,7 +305,42 @@ public virtual void Add(HistogramBase fromHistogram)
305
305
}
306
306
307
307
/// <summary>
308
-
/// Get the size (in value units) of the range of values that are equivalent to the given value within the histogram's resolution.
308
+
/// Subtract the contents of another histogram from this one.
309
+
/// </summary>
310
+
/// <param name="fromHistogram">The other histogram.</param>
311
+
/// <exception cref="System.ArgumentOutOfRangeException">if fromHistogram covers a wider range than this histogram.</exception>
0 commit comments