All Classes Namespaces Files Functions Variables Typedefs Enumerations Friends Macros Pages
assign_updates.hpp
Go to the documentation of this file.
1 
8 #ifndef PAAL_ASSIGN_UPDATES_HPP
9 #define PAAL_ASSIGN_UPDATES_HPP
10 
11 #include <algorithm>
12 
13 namespace paal {
14 
17 template <typename T>
18 void assign_max(T & t, const T & u) {
19  t = std::max(t, u);
20 }
21 
24 template <typename T>
25 void assign_min(T & t, const T & u) {
26  t = std::min(t, u);
27 }
28 
29 
30 } // ! paal
31 
32 #endif // PAAL_ASSIGN_UPDATES_HPP
void assign_max(T &t, const T &u)
void assign_min(T &t, const T &u)