Include dependency graph for MinMaxFix.hpp:
This graph shows which files directly or indirectly include this file:Go to the source code of this file.
Namespaces | |
| namespace | AH |
| PrintStream library | |
Functions | |
| template<class T , class U > | |
| constexpr auto | min (const T &a, const U &b) -> decltype(b< a ? b :a) |
| Return the smaller of two numbers/objects. | |
| template<class T , class U > | |
| constexpr auto | max (const T &a, const U &b) -> decltype(a< b ? b :a) |
| Return the larger of two numbers/objects. | |