template <typename T>

class LinearHistogram

Defined at line 183 of file ../../zircon/system/ulib/inspect/include/lib/inspect/cpp/vmo/types.h

Public Methods

void LinearHistogram<T> ()

Create a default histogram.

Operations on the metric will have no effect.

Defined at line 187 of file ../../zircon/system/ulib/inspect/include/lib/inspect/cpp/vmo/types.h

void LinearHistogram<T> (const LinearHistogram<T> & other)

Movable but not copyable.

Defined at line 190 of file ../../zircon/system/ulib/inspect/include/lib/inspect/cpp/vmo/types.h

void LinearHistogram<T> (LinearHistogram<T> && other)

Defined at line 191 of file ../../zircon/system/ulib/inspect/include/lib/inspect/cpp/vmo/types.h

LinearHistogram<T> & operator= (const LinearHistogram<T> & other)

Defined at line 192 of file ../../zircon/system/ulib/inspect/include/lib/inspect/cpp/vmo/types.h

LinearHistogram<T> & operator= (LinearHistogram<T> && other)

Defined at line 193 of file ../../zircon/system/ulib/inspect/include/lib/inspect/cpp/vmo/types.h

void Insert (T value)

Insert the given value once to the correct bucket of the histogram.

Defined at line 196 of file ../../zircon/system/ulib/inspect/include/lib/inspect/cpp/vmo/types.h

void Insert (T value, T count)

Insert the given value |count| times to the correct bucket of the

histogram.

Defined at line 200 of file ../../zircon/system/ulib/inspect/include/lib/inspect/cpp/vmo/types.h

Friends

template <typename T>
class Node