lin
functors.hpp
Go to the documentation of this file.
1 
5 // TODO : Documentation for this entire fil
6 
7 #ifndef LIN_QUERIES_FUNCTORS_HPP_
8 #define LIN_QUERIES_FUNCTORS_HPP_
9 
10 #include <utility>
11 
12 namespace lin {
13 namespace internal {
14 
16 struct equal_to {
17  template <typename T, typename U>
18  using expression = decltype(std::declval<T &>() == std::declval<U &>());
19 
20  constexpr equal_to() = default;
21  template <typename T, typename U>
22  inline constexpr auto operator()(T const &t, U const &u) const { return t == u; }
23 };
24 
26 template <typename T>
27 struct equal_to_st {
28  template <typename U>
29  using expression = typename equal_to::template expression<T, U>;
30 
31  T const t;
32  constexpr equal_to_st() = default;
33  constexpr equal_to_st(T const &t) : t(t) { }
34  template <typename U>
35  inline constexpr auto operator()(U const &u) const { return equal_to()(t, u); }
36 };
37 
39 template <typename T>
41 
43 struct greater {
44  template <typename T, typename U>
45  using expression = decltype(std::declval<T &>() > std::declval<U &>());
46 
47  constexpr greater() = default;
48  template <typename T, typename U>
49  inline constexpr auto operator()(T const &t, U const &u) const { return t > u; }
50 };
51 
53 template <typename T>
54 struct greater_st {
55  template <typename U>
56  using expression = typename greater::template expression<T, U>;
57 
58  T const t;
59  constexpr greater_st() = default;
60  constexpr greater_st(T const &t) : t(t) { }
61  template <typename U>
62  inline constexpr auto operator()(U const &u) const { return greater()(t, u); }
63 };
64 
66 template <typename T>
67 struct greater_ts {
68  template <typename U>
69  using expression = typename greater::template expression<U, T>;
70 
71  T const t;
72  constexpr greater_ts() = default;
73  constexpr greater_ts(T const &t) : t(t) { }
74  template <typename U>
75  inline constexpr auto operator()(U const &u) const { return greater()(u, t); }
76 };
77 
79 struct greater_equal {
80  template <typename T, typename U>
81  using expression = decltype(std::declval<T &>() >= std::declval<U &>());
82 
83  constexpr greater_equal() = default;
84  template <typename T, typename U>
85  inline constexpr auto operator()(T const &t, U const &u) const { return t >= u; }
86 };
87 
89 template <typename T>
91  template <typename U>
92  using expression = typename greater_equal::template expression<T, U>;
93 
94  T const t;
95  constexpr greater_equal_st() = default;
96  constexpr greater_equal_st(T const &t) : t(t) { }
97  template <typename U>
98  inline constexpr auto operator()(U const &u) const { return greater_equal()(t, u); }
99 };
100 
102 template <typename T>
104  template <typename U>
105  using expression = typename greater_equal::template expression<U, T>;
106 
107  T const t;
108  constexpr greater_equal_ts() = default;
109  constexpr greater_equal_ts(T const &t) : t(t) { }
110  template <typename U>
111  inline constexpr auto operator()(U const &u) const { return greater_equal()(u, t); }
112 };
113 
115 struct less {
116  template <typename T, typename U>
117  using expression = decltype(std::declval<T &>() < std::declval<U &>());
118 
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; }
122 };
123 
125 template <typename T>
126 struct less_st {
127  template <typename U>
128  using expression = typename less::template expression<T, U>;
129 
130  T const t;
131  constexpr less_st() = default;
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); }
135 };
136 
138 template <typename T>
139 struct less_ts {
140  template <typename U>
141  using expression = typename less::template expression<U, T>;
142 
143  T const t;
144  constexpr less_ts() = default;
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); }
148 };
149 
151 struct less_equal {
152  template <typename T, typename U>
153  using expression = decltype(std::declval<T &>() <= std::declval<U &>());
154 
155  constexpr less_equal() = default;
156  template <typename T, typename U>
157  inline constexpr auto operator()(T const &t, U const &u) const { return t <= u; }
158 };
159 
161 template <typename T>
163  template <typename U>
164  using expression = typename less_equal::template expression<T, U>;
165 
166  T const t;
167  constexpr less_equal_st() = default;
168  constexpr less_equal_st(T const &t) : t(t) { }
169  template <typename U>
170  inline constexpr auto operator()(U const &u) const { return less_equal()(t, u); }
171 };
172 
174 template <typename T>
176  template <typename U>
177  using expression = typename less_equal::template expression<U, T>;
178 
179  T const t;
180  constexpr less_equal_ts() = default;
181  constexpr less_equal_ts(T const &t) : t(t) { }
182  template <typename U>
183  inline constexpr auto operator()(U const &u) const { return less_equal()(u, t); }
184 };
185 
187 struct logical_and {
188  template <typename T, typename U>
189  using expression = decltype(std::declval<T &>() && std::declval<U &>());
190 
191  constexpr logical_and() = default;
192  template <typename T, typename U>
193  inline constexpr auto operator()(T const &t, U const &u) const { return t && u; }
194 };
195 
197 template <typename T>
199  template <typename U>
200  using expression = typename logical_and::template expression<T, U>;
201 
202  T const t;
203  constexpr logical_and_st() = default;
204  constexpr logical_and_st(T const &t) : t(t) { }
205  template <typename U>
206  inline constexpr auto operator()(U const &u) const { return logical_and()(t, u); }
207 };
208 
210 template <typename T>
212 
214 struct logical_not {
215  template <typename T>
216  using expression = decltype(!std::declval<T &>());
217 
218  constexpr logical_not() = default;
219  template <typename T>
220  inline constexpr auto operator()(T const &t) const { return !t; }
221 };
222 
224 struct logical_or {
225  template <typename T, typename U>
226  using expression = decltype(std::declval<T &>() || std::declval<U &>());
227 
228  constexpr logical_or() = default;
229  template <typename T, typename U>
230  inline constexpr auto operator()(T const &t, U const &u) const { return t || u; }
231 };
232 
234 template <typename T>
236  template <typename U>
237  using expression = typename logical_or::template expression<T, U>;
238 
239  T const t;
240  constexpr logical_or_st() = default;
241  constexpr logical_or_st(T const &t) : t(t) { }
242  template <typename U>
243  inline constexpr auto operator()(U const &u) const { return logical_or()(t, u); }
244 };
245 
247 template <typename T>
249 
251 struct not_equal_to {
252  template <typename T, typename U>
253  using expression = decltype(std::declval<T &>() != std::declval<U &>());
254 
255  constexpr not_equal_to() = default;
256  template <typename T, typename U>
257  inline constexpr auto operator()(T const &t, U const &u) const { return t != u; }
258 };
259 
261 template <typename T>
263  template <typename U>
264  using expression = typename not_equal_to::template expression<T, U>;
265 
266  T const t;
267  constexpr not_equal_to_st() = default;
268  constexpr not_equal_to_st(T const &t) : t(t) { }
269  template <typename U>
270  inline constexpr auto operator()(U const &u) const { return not_equal_to()(t, u); }
271 };
272 
274 template <typename T>
276 
277 } // namespace internal
278 } // namespace lin
279 
280 #endif
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