Min-Max

template <typename T>
class MinMax : public Printable

Class to track minimum and maximum values of a set of data, with average, total and count.

Subclassed by Profiling::MinMaxTimes< Timer >

Public Functions

MinMax(const String &title)
const String &getTitle() const
void clear()
void update(T value)
T getMin() const
T getMax() const
T getTotal() const
T getAverage() const
unsigned getCount() const
size_t printTo(Print &p) const