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);
Dune namespace.
Definition alignment.hh:11
Definition binaryfunctions.hh:18
Type operator()(const Type &t1, const Type &t2) const
Definition binaryfunctions.hh:19
Definition binaryfunctions.hh:28
Type operator()(const Type &t1, const Type &t2) const
Definition binaryfunctions.hh:29