This repository has been archived by the owner on Jan 3, 2024. It is now read-only.
forked from fnc12/sqlite_orm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconditions.h
1292 lines (1049 loc) · 38.2 KB
/
conditions.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
#pragma once
#include <string> // std::string
#include <type_traits> // std::enable_if, std::is_same, std::remove_const
#include <vector> // std::vector
#include <tuple> // std::tuple
#include <sstream> // std::stringstream
#include "functional/cxx_universal.h"
#include "functional/cxx_type_traits_polyfill.h"
#include "is_base_of_template.h"
#include "type_traits.h"
#include "collate_argument.h"
#include "constraints.h"
#include "optional_container.h"
#include "serializer_context.h"
#include "tags.h"
#include "alias_traits.h"
#include "expression.h"
#include "type_printer.h"
#include "literal.h"
namespace sqlite_orm {
namespace internal {
struct limit_string {
operator std::string() const {
return "LIMIT";
}
};
/**
* Stores LIMIT/OFFSET info
*/
template<class T, bool has_offset, bool offset_is_implicit, class O>
struct limit_t : limit_string {
T lim;
optional_container<O> off;
limit_t() = default;
limit_t(decltype(lim) lim_) : lim(std::move(lim_)) {}
limit_t(decltype(lim) lim_, decltype(off) off_) : lim(std::move(lim_)), off(std::move(off_)) {}
};
template<class T>
struct is_limit : std::false_type {};
template<class T, bool has_offset, bool offset_is_implicit, class O>
struct is_limit<limit_t<T, has_offset, offset_is_implicit, O>> : std::true_type {};
/**
* Stores OFFSET only info
*/
template<class T>
struct offset_t {
T off;
};
template<class T>
using is_offset = polyfill::is_specialization_of<T, offset_t>;
/**
* Collated something
*/
template<class T>
struct collate_t : public condition_t {
T expr;
collate_argument argument;
collate_t(T expr_, collate_argument argument_) : expr(std::move(expr_)), argument(argument_) {}
operator std::string() const {
return collate_constraint_t{this->argument};
}
};
struct named_collate_base {
std::string name;
operator std::string() const {
return "COLLATE " + this->name;
}
};
/**
* Collated something with custom collate function
*/
template<class T>
struct named_collate : named_collate_base {
T expr;
named_collate(T expr_, std::string name_) : named_collate_base{std::move(name_)}, expr(std::move(expr_)) {}
};
struct negated_condition_string {
operator std::string() const {
return "NOT";
}
};
/**
* Result of not operator
*/
template<class C>
struct negated_condition_t : condition_t, negated_condition_string {
C c;
negated_condition_t(C c_) : c(std::move(c_)) {}
};
/**
* Base class for binary conditions
* L is left argument type
* R is right argument type
* S is 'string' class (a class which has cast to `std::string` operator)
* Res is result type
*/
template<class L, class R, class S, class Res>
struct binary_condition : condition_t, S {
using left_type = L;
using right_type = R;
using result_type = Res;
left_type l;
right_type r;
binary_condition() = default;
binary_condition(left_type l_, right_type r_) : l(std::move(l_)), r(std::move(r_)) {}
};
template<class T>
SQLITE_ORM_INLINE_VAR constexpr bool is_binary_condition_v = is_base_of_template_v<T, binary_condition>;
template<class T>
using is_binary_condition = polyfill::bool_constant<is_binary_condition_v<T>>;
struct and_condition_string {
operator std::string() const {
return "AND";
}
};
/**
* Result of and operator
*/
template<class L, class R>
struct and_condition_t : binary_condition<L, R, and_condition_string, bool> {
using super = binary_condition<L, R, and_condition_string, bool>;
using super::super;
};
template<class L, class R>
and_condition_t<L, R> make_and_condition(L left, R right) {
return {std::move(left), std::move(right)};
}
struct or_condition_string {
operator std::string() const {
return "OR";
}
};
/**
* Result of or operator
*/
template<class L, class R>
struct or_condition_t : binary_condition<L, R, or_condition_string, bool> {
using super = binary_condition<L, R, or_condition_string, bool>;
using super::super;
};
template<class L, class R>
or_condition_t<L, R> make_or_condition(L left, R right) {
return {std::move(left), std::move(right)};
}
struct is_equal_string {
operator std::string() const {
return "=";
}
};
/**
* = and == operators object
*/
template<class L, class R>
struct is_equal_t : binary_condition<L, R, is_equal_string, bool>, negatable_t {
using self = is_equal_t<L, R>;
using binary_condition<L, R, is_equal_string, bool>::binary_condition;
collate_t<self> collate_binary() const {
return {*this, collate_argument::binary};
}
collate_t<self> collate_nocase() const {
return {*this, collate_argument::nocase};
}
collate_t<self> collate_rtrim() const {
return {*this, collate_argument::rtrim};
}
named_collate<self> collate(std::string name) const {
return {*this, std::move(name)};
}
template<class C>
named_collate<self> collate() const {
std::stringstream ss;
ss << C::name() << std::flush;
return {*this, ss.str()};
}
};
struct is_not_equal_string {
operator std::string() const {
return "!=";
}
};
/**
* != operator object
*/
template<class L, class R>
struct is_not_equal_t : binary_condition<L, R, is_not_equal_string, bool>, negatable_t {
using self = is_not_equal_t<L, R>;
using binary_condition<L, R, is_not_equal_string, bool>::binary_condition;
collate_t<self> collate_binary() const {
return {*this, collate_argument::binary};
}
collate_t<self> collate_nocase() const {
return {*this, collate_argument::nocase};
}
collate_t<self> collate_rtrim() const {
return {*this, collate_argument::rtrim};
}
};
struct greater_than_string {
operator std::string() const {
return ">";
}
};
/**
* > operator object.
*/
template<class L, class R>
struct greater_than_t : binary_condition<L, R, greater_than_string, bool>, negatable_t {
using self = greater_than_t<L, R>;
using binary_condition<L, R, greater_than_string, bool>::binary_condition;
collate_t<self> collate_binary() const {
return {*this, collate_argument::binary};
}
collate_t<self> collate_nocase() const {
return {*this, collate_argument::nocase};
}
collate_t<self> collate_rtrim() const {
return {*this, collate_argument::rtrim};
}
};
struct greater_or_equal_string {
operator std::string() const {
return ">=";
}
};
/**
* >= operator object.
*/
template<class L, class R>
struct greater_or_equal_t : binary_condition<L, R, greater_or_equal_string, bool>, negatable_t {
using self = greater_or_equal_t<L, R>;
using binary_condition<L, R, greater_or_equal_string, bool>::binary_condition;
collate_t<self> collate_binary() const {
return {*this, collate_argument::binary};
}
collate_t<self> collate_nocase() const {
return {*this, collate_argument::nocase};
}
collate_t<self> collate_rtrim() const {
return {*this, collate_argument::rtrim};
}
};
struct lesser_than_string {
operator std::string() const {
return "<";
}
};
/**
* < operator object.
*/
template<class L, class R>
struct lesser_than_t : binary_condition<L, R, lesser_than_string, bool>, negatable_t {
using self = lesser_than_t<L, R>;
using binary_condition<L, R, lesser_than_string, bool>::binary_condition;
collate_t<self> collate_binary() const {
return {*this, collate_argument::binary};
}
collate_t<self> collate_nocase() const {
return {*this, collate_argument::nocase};
}
collate_t<self> collate_rtrim() const {
return {*this, collate_argument::rtrim};
}
};
struct lesser_or_equal_string {
operator std::string() const {
return "<=";
}
};
/**
* <= operator object.
*/
template<class L, class R>
struct lesser_or_equal_t : binary_condition<L, R, lesser_or_equal_string, bool>, negatable_t {
using self = lesser_or_equal_t<L, R>;
using binary_condition<L, R, lesser_or_equal_string, bool>::binary_condition;
collate_t<self> collate_binary() const {
return {*this, collate_argument::binary};
}
collate_t<self> collate_nocase() const {
return {*this, collate_argument::nocase};
}
collate_t<self> collate_rtrim() const {
return {*this, collate_argument::rtrim};
}
};
struct in_base {
bool negative = false; // used in not_in
#ifndef SQLITE_ORM_AGGREGATE_NSDMI_SUPPORTED
in_base(bool negative) : negative{negative} {}
#endif
};
/**
* IN operator object.
*/
template<class L, class A>
struct dynamic_in_t : condition_t, in_base, negatable_t {
using self = dynamic_in_t<L, A>;
L left; // left expression
A argument; // in arg
dynamic_in_t(L left_, A argument_, bool negative_) :
in_base{negative_}, left(std::move(left_)), argument(std::move(argument_)) {}
};
template<class L, class... Args>
struct in_t : condition_t, in_base, negatable_t {
L left;
std::tuple<Args...> argument;
in_t(L left_, decltype(argument) argument_, bool negative_) :
in_base{negative_}, left(std::move(left_)), argument(std::move(argument_)) {}
};
struct is_null_string {
operator std::string() const {
return "IS NULL";
}
};
/**
* IS NULL operator object.
*/
template<class T>
struct is_null_t : is_null_string, negatable_t {
using self = is_null_t<T>;
T t;
is_null_t(T t_) : t(std::move(t_)) {}
};
struct is_not_null_string {
operator std::string() const {
return "IS NOT NULL";
}
};
/**
* IS NOT NULL operator object.
*/
template<class T>
struct is_not_null_t : is_not_null_string, negatable_t {
using self = is_not_null_t<T>;
T t;
is_not_null_t(T t_) : t(std::move(t_)) {}
};
struct order_by_base {
int asc_desc = 0; // 1: asc, -1: desc
std::string _collate_argument;
#ifndef SQLITE_ORM_AGGREGATE_NSDMI_SUPPORTED
order_by_base() = default;
order_by_base(decltype(asc_desc) asc_desc_, decltype(_collate_argument) _collate_argument_) :
asc_desc(asc_desc_), _collate_argument(std::move(_collate_argument_)) {}
#endif
};
struct order_by_string {
operator std::string() const {
return "ORDER BY";
}
};
/**
* ORDER BY argument holder.
*/
template<class O>
struct order_by_t : order_by_base, order_by_string {
using expression_type = O;
using self = order_by_t<expression_type>;
expression_type expression;
order_by_t(expression_type expression_) : order_by_base(), expression(std::move(expression_)) {}
self asc() const {
auto res = *this;
res.asc_desc = 1;
return res;
}
self desc() const {
auto res = *this;
res.asc_desc = -1;
return res;
}
self collate_binary() const {
auto res = *this;
res._collate_argument = collate_constraint_t::string_from_collate_argument(collate_argument::binary);
return res;
}
self collate_nocase() const {
auto res = *this;
res._collate_argument = collate_constraint_t::string_from_collate_argument(collate_argument::nocase);
return res;
}
self collate_rtrim() const {
auto res = *this;
res._collate_argument = collate_constraint_t::string_from_collate_argument(collate_argument::rtrim);
return res;
}
self collate(std::string name) const {
auto res = *this;
res._collate_argument = std::move(name);
return res;
}
template<class C>
self collate() const {
std::stringstream ss;
ss << C::name() << std::flush;
return this->collate(ss.str());
}
};
/**
* ORDER BY pack holder.
*/
template<class... Args>
struct multi_order_by_t : order_by_string {
using args_type = std::tuple<Args...>;
args_type args;
multi_order_by_t(args_type args_) : args{std::move(args_)} {}
};
struct dynamic_order_by_entry_t : order_by_base {
std::string name;
dynamic_order_by_entry_t(decltype(name) name_, int asc_desc_, std::string collate_argument_) :
order_by_base{asc_desc_, std::move(collate_argument_)}, name(std::move(name_)) {}
};
/**
* C - serializer context class
*/
template<class C>
struct dynamic_order_by_t : order_by_string {
using context_t = C;
using entry_t = dynamic_order_by_entry_t;
using const_iterator = typename std::vector<entry_t>::const_iterator;
dynamic_order_by_t(const context_t& context_) : context(context_) {}
template<class O>
void push_back(order_by_t<O> order_by) {
auto newContext = this->context;
newContext.skip_table_name = true;
auto columnName = serialize(order_by.expression, newContext);
this->entries.emplace_back(std::move(columnName),
order_by.asc_desc,
std::move(order_by._collate_argument));
}
const_iterator begin() const {
return this->entries.begin();
}
const_iterator end() const {
return this->entries.end();
}
void clear() {
this->entries.clear();
}
protected:
std::vector<entry_t> entries;
context_t context;
};
template<class T>
SQLITE_ORM_INLINE_VAR constexpr bool is_order_by_v =
polyfill::disjunction_v<polyfill::is_specialization_of<T, order_by_t>,
polyfill::is_specialization_of<T, multi_order_by_t>,
polyfill::is_specialization_of<T, dynamic_order_by_t>>;
template<class T>
using is_order_by = polyfill::bool_constant<is_order_by_v<T>>;
struct between_string {
operator std::string() const {
return "BETWEEN";
}
};
/**
* BETWEEN operator object.
*/
template<class A, class T>
struct between_t : condition_t, between_string {
using expression_type = A;
using lower_type = T;
using upper_type = T;
expression_type expr;
lower_type b1;
upper_type b2;
between_t(expression_type expr_, lower_type b1_, upper_type b2_) :
expr(std::move(expr_)), b1(std::move(b1_)), b2(std::move(b2_)) {}
};
struct like_string {
operator std::string() const {
return "LIKE";
}
};
/**
* LIKE operator object.
*/
template<class A, class T, class E>
struct like_t : condition_t, like_string, negatable_t {
using self = like_t<A, T, E>;
using arg_t = A;
using pattern_t = T;
using escape_t = E;
arg_t arg;
pattern_t pattern;
optional_container<escape_t> arg3; // not escape cause escape exists as a function here
like_t(arg_t arg_, pattern_t pattern_, optional_container<escape_t> escape_) :
arg(std::move(arg_)), pattern(std::move(pattern_)), arg3(std::move(escape_)) {}
template<class C>
like_t<A, T, C> escape(C c) const {
optional_container<C> newArg3{std::move(c)};
return {std::move(this->arg), std::move(this->pattern), std::move(newArg3)};
}
};
struct glob_string {
operator std::string() const {
return "GLOB";
}
};
template<class A, class T>
struct glob_t : condition_t, glob_string, internal::negatable_t {
using self = glob_t<A, T>;
using arg_t = A;
using pattern_t = T;
arg_t arg;
pattern_t pattern;
glob_t(arg_t arg_, pattern_t pattern_) : arg(std::move(arg_)), pattern(std::move(pattern_)) {}
};
struct cross_join_string {
operator std::string() const {
return "CROSS JOIN";
}
};
/**
* CROSS JOIN holder.
* T is joined type which represents any mapped table.
*/
template<class T>
struct cross_join_t : cross_join_string {
using type = T;
};
struct natural_join_string {
operator std::string() const {
return "NATURAL JOIN";
}
};
/**
* NATURAL JOIN holder.
* T is joined type which represents any mapped table.
*/
template<class T>
struct natural_join_t : natural_join_string {
using type = T;
};
struct left_join_string {
operator std::string() const {
return "LEFT JOIN";
}
};
/**
* LEFT JOIN holder.
* T is joined type which represents any mapped table.
* O is on(...) argument type.
*/
template<class T, class O>
struct left_join_t : left_join_string {
using type = T;
using on_type = O;
on_type constraint;
left_join_t(on_type constraint_) : constraint(std::move(constraint_)) {}
};
struct join_string {
operator std::string() const {
return "JOIN";
}
};
/**
* Simple JOIN holder.
* T is joined type which represents any mapped table.
* O is on(...) argument type.
*/
template<class T, class O>
struct join_t : join_string {
using type = T;
using on_type = O;
on_type constraint;
join_t(on_type constraint_) : constraint(std::move(constraint_)) {}
};
struct left_outer_join_string {
operator std::string() const {
return "LEFT OUTER JOIN";
}
};
/**
* LEFT OUTER JOIN holder.
* T is joined type which represents any mapped table.
* O is on(...) argument type.
*/
template<class T, class O>
struct left_outer_join_t : left_outer_join_string {
using type = T;
using on_type = O;
on_type constraint;
left_outer_join_t(on_type constraint_) : constraint(std::move(constraint_)) {}
};
struct on_string {
operator std::string() const {
return "ON";
}
};
/**
* on(...) argument holder used for JOIN, LEFT JOIN, LEFT OUTER JOIN and INNER JOIN
* T is on type argument.
*/
template<class T>
struct on_t : on_string {
using arg_type = T;
arg_type arg;
on_t(arg_type arg_) : arg(std::move(arg_)) {}
};
/**
* USING argument holder.
*/
template<class T, class M>
struct using_t {
column_pointer<T, M> column;
operator std::string() const {
return "USING";
}
};
struct inner_join_string {
operator std::string() const {
return "INNER JOIN";
}
};
/**
* INNER JOIN holder.
* T is joined type which represents any mapped table.
* O is on(...) argument type.
*/
template<class T, class O>
struct inner_join_t : inner_join_string {
using type = T;
using on_type = O;
on_type constraint;
inner_join_t(on_type constraint_) : constraint(std::move(constraint_)) {}
};
struct cast_string {
operator std::string() const {
return "CAST";
}
};
/**
* CAST holder.
* T is a type to cast to
* E is an expression type
* Example: cast<std::string>(&User::id)
*/
template<class T, class E>
struct cast_t : cast_string {
using to_type = T;
using expression_type = E;
expression_type expression;
cast_t(expression_type expression_) : expression(std::move(expression_)) {}
};
template<class... Args>
struct from_t {
using tuple_type = std::tuple<Args...>;
};
template<class T>
using is_from = polyfill::is_specialization_of<T, from_t>;
template<class T>
using is_constrained_join = polyfill::is_detected<on_type_t, T>;
}
/**
* Explicit FROM function. Usage:
* `storage.select(&User::id, from<User>());`
*/
template<class... Tables>
internal::from_t<Tables...> from() {
static_assert(sizeof...(Tables) > 0, "");
return {};
}
template<class T, internal::satisfies<std::is_base_of, internal::negatable_t, T> = true>
internal::negated_condition_t<T> operator!(T arg) {
return {std::move(arg)};
}
// Deliberately put operators for `expression_t` into the internal namespace
// to facilitate ADL (Argument Dependent Lookup)
namespace internal {
/**
* Cute operators for columns
*/
template<class T, class R>
lesser_than_t<T, R> operator<(expression_t<T> expr, R r) {
return {std::move(expr.value), std::move(r)};
}
template<class L, class T>
lesser_than_t<L, T> operator<(L l, expression_t<T> expr) {
return {std::move(l), std::move(expr.value)};
}
template<class T, class R>
lesser_or_equal_t<T, R> operator<=(expression_t<T> expr, R r) {
return {std::move(expr.value), std::move(r)};
}
template<class L, class T>
lesser_or_equal_t<L, T> operator<=(L l, expression_t<T> expr) {
return {std::move(l), std::move(expr.value)};
}
template<class T, class R>
greater_than_t<T, R> operator>(expression_t<T> expr, R r) {
return {std::move(expr.value), std::move(r)};
}
template<class L, class T>
greater_than_t<L, T> operator>(L l, expression_t<T> expr) {
return {std::move(l), std::move(expr.value)};
}
template<class T, class R>
greater_or_equal_t<T, R> operator>=(expression_t<T> expr, R r) {
return {std::move(expr.value), std::move(r)};
}
template<class L, class T>
greater_or_equal_t<L, T> operator>=(L l, expression_t<T> expr) {
return {std::move(l), std::move(expr.value)};
}
template<class T, class R>
is_equal_t<T, R> operator==(expression_t<T> expr, R r) {
return {std::move(expr.value), std::move(r)};
}
template<class L, class T>
is_equal_t<L, T> operator==(L l, expression_t<T> expr) {
return {std::move(l), std::move(expr.value)};
}
template<class T, class R>
is_not_equal_t<T, R> operator!=(expression_t<T> expr, R r) {
return {std::move(expr.value), std::move(r)};
}
template<class L, class T>
is_not_equal_t<L, T> operator!=(L l, expression_t<T> expr) {
return {std::move(l), std::move(expr.value)};
}
template<class T, class R>
conc_t<T, R> operator||(expression_t<T> expr, R r) {
return {std::move(expr.value), std::move(r)};
}
template<class L, class T>
conc_t<L, T> operator||(L l, expression_t<T> expr) {
return {std::move(l), std::move(expr.value)};
}
template<class L, class R>
conc_t<L, R> operator||(expression_t<L> l, expression_t<R> r) {
return {std::move(l.value), std::move(r.value)};
}
template<class R, class E, satisfies<std::is_base_of, conc_string, E> = true>
conc_t<E, R> operator||(E expr, R r) {
return {std::move(expr), std::move(r)};
}
template<class L, class E, satisfies<std::is_base_of, conc_string, E> = true>
conc_t<L, E> operator||(L l, E expr) {
return {std::move(l), std::move(expr)};
}
template<class T, class R>
add_t<T, R> operator+(expression_t<T> expr, R r) {
return {std::move(expr.value), std::move(r)};
}
template<class L, class T>
add_t<L, T> operator+(L l, expression_t<T> expr) {
return {std::move(l), std::move(expr.value)};
}
template<class L, class R>
add_t<L, R> operator+(expression_t<L> l, expression_t<R> r) {
return {std::move(l.value), std::move(r.value)};
}
template<class T, class R>
sub_t<T, R> operator-(expression_t<T> expr, R r) {
return {std::move(expr.value), std::move(r)};
}
template<class L, class T>
sub_t<L, T> operator-(L l, expression_t<T> expr) {
return {std::move(l), std::move(expr.value)};
}
template<class L, class R>
sub_t<L, R> operator-(expression_t<L> l, expression_t<R> r) {
return {std::move(l.value), std::move(r.value)};
}
template<class T, class R>
mul_t<T, R> operator*(expression_t<T> expr, R r) {
return {std::move(expr.value), std::move(r)};
}
template<class L, class T>
mul_t<L, T> operator*(L l, expression_t<T> expr) {
return {std::move(l), std::move(expr.value)};
}
template<class L, class R>
mul_t<L, R> operator*(expression_t<L> l, expression_t<R> r) {
return {std::move(l.value), std::move(r.value)};
}
template<class T, class R>
div_t<T, R> operator/(expression_t<T> expr, R r) {
return {std::move(expr.value), std::move(r)};
}
template<class L, class T>
div_t<L, T> operator/(L l, expression_t<T> expr) {
return {std::move(l), std::move(expr.value)};
}
template<class L, class R>
div_t<L, R> operator/(expression_t<L> l, expression_t<R> r) {
return {std::move(l.value), std::move(r.value)};
}
template<class T, class R>
mod_t<T, R> operator%(expression_t<T> expr, R r) {
return {std::move(expr.value), std::move(r)};
}
template<class L, class T>
mod_t<L, T> operator%(L l, expression_t<T> expr) {
return {std::move(l), std::move(expr.value)};
}
template<class L, class R>
mod_t<L, R> operator%(expression_t<L> l, expression_t<R> r) {
return {std::move(l.value), std::move(r.value)};
}
}