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;
Dune namespace.
Definition alignedallocator.hh:13
Definition binaryfunctions.hh:18
Type result_type
Definition binaryfunctions.hh:23
Type operator()(const Type &t1, const Type &t2) const
Definition binaryfunctions.hh:25
Type first_argument_type
Definition binaryfunctions.hh:19
Type second_argument_type
Definition binaryfunctions.hh:21
Definition binaryfunctions.hh:34
Type operator()(const Type &t1, const Type &t2) const
Definition binaryfunctions.hh:41
Type result_type
Definition binaryfunctions.hh:39
Type first_argument_type
Definition binaryfunctions.hh:35
Type second_argument_type
Definition binaryfunctions.hh:37