Libosmium
2.20.0
Fast and flexible C++ library for working with OpenStreetMap data
|
#include <minmax.hpp>
Public Member Functions | |
min_op (T start_value=min_op_start_value< T >()) | |
void | update (T value) noexcept |
T | operator() () const noexcept |
Private Attributes | |
T | m_value |
Class for calculating the minimum of a bunch of values. Works with any numeric type.
Usage:
min_op<int> x; x.update(27); x.update(12); auto min = x.get(); // 12
|
inlineexplicit |
|
inlinenoexcept |
|
inlinenoexcept |
|
private |