7 #ifndef LIN_CORE_OPERATIONS_FUNCTORS_HPP_ 8 #define LIN_CORE_OPERATIONS_FUNCTORS_HPP_ 10 #include <type_traits> 17 template <
typename T,
typename U>
18 using expression = decltype(std::declval<T &>() + std::declval<U &>());
20 constexpr
add() =
default;
21 template <
typename T,
typename U>
22 inline constexpr
auto operator()(T
const &t, U
const &u)
const {
return t + u; }
28 using expression =
typename add::template expression<T, U>;
31 constexpr
add_st() =
default;
32 constexpr
add_st(T
const &t) : t(t) { }
34 inline constexpr
auto operator()(U
const &u)
const {
return add()(t, u); }
43 using expression = decltype(static_cast<T>(std::declval<U &>()));
45 constexpr
cast() =
default;
47 inline constexpr
auto operator()(U
const &u)
const {
return static_cast<T
>(u); }
51 template <
typename T,
typename U>
52 using expression = decltype(std::declval<T &>() / std::declval<U &>());
54 constexpr
divide() =
default;
55 template <
typename T,
typename U>
56 inline constexpr
auto operator()(T
const &t, U
const &u)
const {
return t / u; }
62 using expression =
typename divide::template expression<T, U>;
66 constexpr
divide_st(T
const &t) : t(t) { }
68 inline constexpr
auto operator()(U
const u)
const {
return divide()(t, u); }
74 using expression =
typename divide::template expression<U, T>;
78 constexpr
divide_ts(T
const &t) : t(t) { }
80 inline constexpr
auto operator()(U
const &u)
const {
return divide()(u, t); }
84 template <
typename T,
typename U>
85 using expression = decltype(std::declval<T &>() * std::declval<U &>());
88 template <
typename T,
typename U>
89 inline constexpr
auto operator()(T
const &t, U
const &u)
const {
return t * u; }
95 using expression =
typename multiply::template expression<T, U>;
100 template <
typename U>
101 inline constexpr
auto operator()(U
const &u)
const {
return multiply()(t, u); }
104 template <
typename T>
108 template <
typename T>
109 using expression = decltype(-std::declval<T &>());
111 constexpr
negate() =
default;
112 template <
typename T>
113 inline constexpr
auto operator()(T
const &t)
const {
return -t; }
117 template <
typename T>
118 inline constexpr
static T _sign(T
const &t) {
119 if (std::is_signed<T>::value)
return T((T(0) < t) - (t < T(0)));
120 else return T(T(0) < t);
123 template <
typename T>
124 using expression = decltype(_sign(std::declval<T &>()));
126 constexpr
sign() =
default;
127 template <
typename T>
128 inline constexpr
auto operator()(T
const &t)
const {
return _sign(t); }
132 template <
typename T>
133 using expression = decltype(std::declval<T &>() * std::declval<T &>());
135 constexpr
square() =
default;
136 template <
typename T>
137 inline constexpr
auto operator()(T
const &t)
const {
return t * t; }
141 template <
typename T,
typename U>
142 using expression = decltype(std::declval<T &>() - std::declval<U &>());
145 template <
typename T,
typename U>
146 inline constexpr
auto operator()(T
const &t, U
const &u)
const {
return t - u; }
149 template <
typename T>
151 template <
typename U>
152 using expression =
typename subtract::template expression<T, U>;
157 template <
typename U>
158 inline constexpr
auto operator()(U
const &u)
const {
return subtract()(t, u); }
161 template <
typename T>
163 template <
typename U>
164 using expression =
typename subtract::template expression<U, T>;
169 template <
typename U>
170 inline constexpr
auto operator()(U
const &u)
const {
return subtract()(u, t); }
Definition: functors.hpp:16
Definition: functors.hpp:140
Definition: functors.hpp:41
Definition: functors.hpp:83
Definition: functors.hpp:107
Definition: functors.hpp:60
Definition: functors.hpp:131
Definition: functors.hpp:162
Definition: functors.hpp:93
Definition: functors.hpp:72
Definition: config.hpp:27
Definition: functors.hpp:150
Definition: functors.hpp:116
Definition: functors.hpp:50
Definition: functors.hpp:26