3 #ifndef DUNE_BINARYFUNCTIONS_HH
4 #define DUNE_BINARYFUNCTIONS_HH
15 template<
typename Type>
17 : std::binary_function<Type,Type,Type>
21 return std::min(t1,t2);
25 template<
typename Type>
27 : std::binary_function<Type,Type,Type>
31 return std::max(t1,t2);
Type operator()(const Type &t1, const Type &t2) const
Definition: binaryfunctions.hh:29
Type operator()(const Type &t1, const Type &t2) const
Definition: binaryfunctions.hh:19
Definition: binaryfunctions.hh:16
Definition: binaryfunctions.hh:26