struct HistogramBucket
Defined at line 69 of file ../../zircon/system/ulib/inspect/include/lib/inspect/cpp/hierarchy.h
Describes a single bucket in a histogram.
This contains the count of values falling in interval [floor, upper_limit).
Members
-
The floor of values falling in this bucket, inclusive.
public T floor
-
The upper limit for values falling in this bucket, exclusive.
public T upper_limit
-
The count of values falling in [floor, upper_limit).
public T count
Functions
HistogramBucket
public void HistogramBucket(T floor, T upper_limit, T count)
Defined at line 79 of file ../../zircon/system/ulib/inspect/include/lib/inspect/cpp/hierarchy.h
operator==
public bool operator==(const HistogramBucket & other)
Defined at line 82 of file ../../zircon/system/ulib/inspect/include/lib/inspect/cpp/hierarchy.h
operator!=
public bool operator!=(const HistogramBucket & other)
Defined at line 86 of file ../../zircon/system/ulib/inspect/include/lib/inspect/cpp/hierarchy.h