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
Definition: binaryfunctions.hh:26
Type operator()(const Type &t1, const Type &t2) const
Definition: binaryfunctions.hh:19
Dune namespace.
Definition: alignment.hh:9
Definition: binaryfunctions.hh:16