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