5 #ifndef DUNE_BINARYFUNCTIONS_HH 6 #define DUNE_BINARYFUNCTIONS_HH 16 template<
typename Type>
19 using first_argument_type [[deprecated(
"This type alias is deprecated following similar deprecations in C++17")]] = Type;
21 using second_argument_type [[deprecated(
"This type alias is deprecated following similar deprecations in C++17")]] = Type;
23 using result_type [[deprecated(
"This type alias is deprecated following similar deprecations in C++17")]] = Type;
32 template<
typename Type>
35 using first_argument_type [[deprecated(
"This type alias is deprecated following similar deprecations in C++17")]] = Type;
37 using second_argument_type [[deprecated(
"This type alias is deprecated following similar deprecations in C++17")]] = Type;
39 using result_type [[deprecated(
"This type alias is deprecated following similar deprecations in C++17")]] = Type;
Type second_argument_type
Definition: binaryfunctions.hh:37
Type operator()(const Type &t1, const Type &t2) const
Definition: binaryfunctions.hh:25
Definition: binaryfunctions.hh:17
Type result_type
Definition: binaryfunctions.hh:23
constexpr auto max
Function object that returns the greater of the given values.
Definition: hybridutilities.hh:489
Type result_type
Definition: binaryfunctions.hh:39
Type first_argument_type
Definition: binaryfunctions.hh:35
Dune namespace
Definition: alignedallocator.hh:12
Definition: binaryfunctions.hh:33
Type second_argument_type
Definition: binaryfunctions.hh:21
constexpr auto min
Function object that returns the smaller of the given values.
Definition: hybridutilities.hh:511
Type operator()(const Type &t1, const Type &t2) const
Definition: binaryfunctions.hh:41
Type first_argument_type
Definition: binaryfunctions.hh:19