class ExponentialHistogram
Defined at line 239 of file ../../zircon/system/ulib/inspect/include/lib/inspect/cpp/vmo/types.h
Functions
ExponentialHistogram<T>
public void ExponentialHistogram<T>()
Defined at line 243 of file ../../zircon/system/ulib/inspect/include/lib/inspect/cpp/vmo/types.h
Create a default histogram. Operations on the metric will have no effect.
ExponentialHistogram<T>
public void ExponentialHistogram<T>(const ExponentialHistogram<T> & other)
Defined at line 246 of file ../../zircon/system/ulib/inspect/include/lib/inspect/cpp/vmo/types.h
Movable but not copyable.
ExponentialHistogram<T>
public void ExponentialHistogram<T>(ExponentialHistogram<T> && other)
Defined at line 247 of file ../../zircon/system/ulib/inspect/include/lib/inspect/cpp/vmo/types.h
operator=
public ExponentialHistogram<T> & operator=(const ExponentialHistogram<T> & other)
Defined at line 248 of file ../../zircon/system/ulib/inspect/include/lib/inspect/cpp/vmo/types.h
operator=
public ExponentialHistogram<T> & operator=(ExponentialHistogram<T> && other)
Defined at line 249 of file ../../zircon/system/ulib/inspect/include/lib/inspect/cpp/vmo/types.h
Insert
public void Insert(T value)
Defined at line 252 of file ../../zircon/system/ulib/inspect/include/lib/inspect/cpp/vmo/types.h
Insert the given value once to the correct bucket of the histogram.
Insert
public void Insert(T value, T count)
Defined at line 256 of file ../../zircon/system/ulib/inspect/include/lib/inspect/cpp/vmo/types.h
Insert the given value |count| times to the correct bucket of the histogram.