7 #ifndef LIN_QUERIES_FUNCTORS_HPP_ 8 #define LIN_QUERIES_FUNCTORS_HPP_ 17 template <
typename T,
typename U>
18 using expression = decltype(std::declval<T &>() == std::declval<U &>());
21 template <
typename T,
typename U>
22 inline constexpr
auto operator()(T
const &t, U
const &u)
const {
return t == u; }
29 using expression =
typename equal_to::template expression<T, U>;
35 inline constexpr
auto operator()(U
const &u)
const {
return equal_to()(t, u); }
44 template <
typename T,
typename U>
45 using expression = decltype(std::declval<T &>() > std::declval<U &>());
48 template <
typename T,
typename U>
49 inline constexpr
auto operator()(T
const &t, U
const &u)
const {
return t > u; }
56 using expression =
typename greater::template expression<T, U>;
62 inline constexpr
auto operator()(U
const &u)
const {
return greater()(t, u); }
69 using expression =
typename greater::template expression<U, T>;
75 inline constexpr
auto operator()(U
const &u)
const {
return greater()(u, t); }
80 template <
typename T,
typename U>
81 using expression = decltype(std::declval<T &>() >= std::declval<U &>());
84 template <
typename T,
typename U>
85 inline constexpr
auto operator()(T
const &t, U
const &u)
const {
return t >= u; }
92 using expression =
typename greater_equal::template expression<T, U>;
98 inline constexpr
auto operator()(U
const &u)
const {
return greater_equal()(t, u); }
102 template <
typename T>
104 template <
typename U>
105 using expression =
typename greater_equal::template expression<U, T>;
110 template <
typename U>
111 inline constexpr
auto operator()(U
const &u)
const {
return greater_equal()(u, t); }
116 template <
typename T,
typename U>
117 using expression = decltype(std::declval<T &>() < std::declval<U &>());
119 constexpr
less() =
default;
120 template <
typename T,
typename U>
121 inline constexpr
auto operator()(T
const &t, U
const &u)
const {
return t < u; }
125 template <
typename T>
127 template <
typename U>
128 using expression =
typename less::template expression<T, U>;
132 constexpr
less_st(T
const &t) : t(t) { }
133 template <
typename U>
134 inline constexpr
auto operator()(U
const &u)
const {
return less()(t, u); }
138 template <
typename T>
140 template <
typename U>
141 using expression =
typename less::template expression<U, T>;
145 constexpr
less_ts(T
const &t) : t(t) { }
146 template <
typename U>
147 inline constexpr
auto operator()(U
const &u)
const {
return less()(u, t); }
152 template <
typename T,
typename U>
153 using expression = decltype(std::declval<T &>() <= std::declval<U &>());
156 template <
typename T,
typename U>
157 inline constexpr
auto operator()(T
const &t, U
const &u)
const {
return t <= u; }
161 template <
typename T>
163 template <
typename U>
164 using expression =
typename less_equal::template expression<T, U>;
169 template <
typename U>
170 inline constexpr
auto operator()(U
const &u)
const {
return less_equal()(t, u); }
174 template <
typename T>
176 template <
typename U>
177 using expression =
typename less_equal::template expression<U, T>;
182 template <
typename U>
183 inline constexpr
auto operator()(U
const &u)
const {
return less_equal()(u, t); }
188 template <
typename T,
typename U>
189 using expression = decltype(std::declval<T &>() && std::declval<U &>());
192 template <
typename T,
typename U>
193 inline constexpr
auto operator()(T
const &t, U
const &u)
const {
return t && u; }
197 template <
typename T>
199 template <
typename U>
200 using expression =
typename logical_and::template expression<T, U>;
205 template <
typename U>
206 inline constexpr
auto operator()(U
const &u)
const {
return logical_and()(t, u); }
210 template <
typename T>
215 template <
typename T>
216 using expression = decltype(!std::declval<T &>());
219 template <
typename T>
220 inline constexpr
auto operator()(T
const &t)
const {
return !t; }
225 template <
typename T,
typename U>
226 using expression = decltype(std::declval<T &>() || std::declval<U &>());
229 template <
typename T,
typename U>
230 inline constexpr
auto operator()(T
const &t, U
const &u)
const {
return t || u; }
234 template <
typename T>
236 template <
typename U>
237 using expression =
typename logical_or::template expression<T, U>;
242 template <
typename U>
243 inline constexpr
auto operator()(U
const &u)
const {
return logical_or()(t, u); }
247 template <
typename T>
252 template <
typename T,
typename U>
253 using expression = decltype(std::declval<T &>() != std::declval<U &>());
256 template <
typename T,
typename U>
257 inline constexpr
auto operator()(T
const &t, U
const &u)
const {
return t != u; }
261 template <
typename T>
263 template <
typename U>
264 using expression =
typename not_equal_to::template expression<T, U>;
269 template <
typename U>
270 inline constexpr
auto operator()(U
const &u)
const {
return not_equal_to()(t, u); }
274 template <
typename T>
Definition: functors.hpp:224
Definition: functors.hpp:151
Definition: functors.hpp:54
Definition: functors.hpp:175
Definition: functors.hpp:16
Definition: functors.hpp:79
Definition: functors.hpp:103
Definition: functors.hpp:262
Definition: functors.hpp:214
Definition: functors.hpp:162
Definition: functors.hpp:139
Definition: functors.hpp:67
Definition: functors.hpp:235
Definition: functors.hpp:187
Definition: functors.hpp:90
Definition: functors.hpp:27
Definition: functors.hpp:43
Definition: config.hpp:27
Definition: functors.hpp:126
Definition: functors.hpp:198
Definition: functors.hpp:115
Definition: functors.hpp:251