-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathranges.h
1306 lines (1077 loc) · 33.1 KB
/
ranges.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
#ifndef _bz_ranges_h__
#define _bz_ranges_h__
#include <algorithm>
#include <utility>
#include <type_traits>
#include <array>
#include <cassert>
#include <vector>
namespace utils
{
template<typename Range>
struct universal_end_sentinel {};
namespace internal
{
template<typename Range>
struct range_base_filter
{
template<typename Func>
auto filter(Func &&func) const noexcept;
};
template<typename Collection>
struct collection_base_filter
{
template<typename Func>
auto filter(Func &&func) const noexcept;
};
template<typename Range>
struct range_base_transform
{
template<typename Func>
auto transform(Func &&func) const noexcept;
};
template<typename Collection>
struct collection_base_transform
{
template<typename Func>
auto transform(Func &&func) const noexcept;
};
template<typename Range>
struct range_base_member
{
template<auto MemberPtr>
auto member(void) const noexcept;
};
template<typename Collection>
struct collection_base_member
{
template<auto MemberPtr>
auto member(void) const noexcept;
};
template<typename Range>
struct range_base_collect
{
template<template<typename ...Ts> typename Vec>
auto collect(void) const;
template<typename Vec>
Vec collect(void) const;
auto collect(void) const
{ return this->template collect<std::vector>(); }
};
template<typename Range>
struct range_base_count
{
std::size_t count(void) const noexcept;
};
template<typename Range>
struct range_base_is_any
{
template<typename Func>
bool is_any(Func &&func) const noexcept;
};
template<typename Collection>
struct collection_base_is_any
{
template<typename Func>
bool is_any(Func &&func) const noexcept;
};
template<typename Range>
struct range_base_is_all
{
template<typename Func>
bool is_all(Func &&func) const noexcept;
};
template<typename Collection>
struct collection_base_is_all
{
template<typename Func>
bool is_all(Func &&func) const noexcept;
};
template<typename Range>
struct range_base_contains
{
template<typename T>
bool contains(T &&val) const noexcept;
};
template<typename Collection>
struct collection_base_contains
{
template<typename T>
bool contains(T &&val) const noexcept;
};
template<typename Range>
struct range_base_for_each
{
template<typename Func>
void for_each(Func &&func) const noexcept;
};
template<typename Collection>
struct collection_base_for_each
{
template<typename Func>
void for_each(Func &&func) const noexcept;
};
template<typename Range>
struct range_base_sum
{
auto sum(void) const noexcept;
};
template<typename Collection>
struct collection_base_sum
{
auto sum(void) const noexcept;
};
template<typename Range>
struct range_base_partial_sum
{
auto partial_sum(void) const noexcept;
};
template<typename Collection>
struct collection_base_partial_sum
{
auto partial_sum(void) const noexcept;
};
template<typename Range>
struct range_base_running_sum
{
template<std::size_t N>
auto running_sum(void) const noexcept;
};
template<typename Collection>
struct collection_base_running_sum
{
template<std::size_t N>
auto running_sum(void) const noexcept;
};
template<typename Range>
struct range_base_adjacent
{
auto adjacent(void) const noexcept;
};
template<typename Collection>
struct collection_base_adjacent
{
auto adjacent(void) const noexcept;
};
template<typename Range>
struct range_base_reduce
{
template<typename BinOp>
auto reduce(BinOp &&bin_op) const noexcept;
template<typename T, typename BinOp>
auto reduce(T init_val, BinOp &&bin_op) const noexcept;
};
template<typename Collection>
struct collection_base_reduce
{
template<typename BinOp>
auto reduce(BinOp &&bin_op) const noexcept;
template<typename T, typename BinOp>
auto reduce(T init_val, BinOp &&bin_op) const noexcept;
};
template<typename Range>
struct range_base_max
{
auto max(void) const noexcept;
template<typename Cmp>
auto max(Cmp &&cmp) const noexcept;
};
template<typename Collection>
struct collection_base_max
{
auto max(void) const noexcept;
template<typename Cmp>
auto max(Cmp &&cmp) const noexcept;
};
template<typename Range>
struct range_base_min
{
auto min(void) const noexcept;
template<typename Cmp>
auto min(Cmp &&cmp) const noexcept;
};
template<typename Collection>
struct collection_base_min
{
auto min(void) const noexcept;
template<typename Cmp>
auto min(Cmp &&cmp) const noexcept;
};
template<typename Collection>
struct collection_base_sort
{
void sort(void) noexcept;
template<typename Cmp>
void sort(Cmp &&cmp) noexcept;
};
template<typename Collection>
struct collection_base_reversed
{
auto reversed(void) noexcept;
};
template<typename Range>
struct range_base_enumerate
{
auto enumerate(void) const noexcept;
};
template<typename Collection>
struct collection_base_enumerate
{
auto enumerate(void) const noexcept;
};
} // namespace internal
template<typename Range>
struct range_base :
internal::range_base_filter <Range>,
internal::range_base_transform <Range>,
internal::range_base_member <Range>,
internal::range_base_collect <Range>,
internal::range_base_count <Range>,
internal::range_base_is_any <Range>,
internal::range_base_is_all <Range>,
internal::range_base_contains <Range>,
internal::range_base_for_each <Range>,
internal::range_base_sum <Range>,
internal::range_base_partial_sum<Range>,
internal::range_base_running_sum<Range>,
internal::range_base_adjacent <Range>,
internal::range_base_reduce <Range>,
internal::range_base_max <Range>,
internal::range_base_min <Range>,
internal::range_base_enumerate <Range>
{};
template<typename Collection>
struct collection_base :
internal::collection_base_filter <Collection>,
internal::collection_base_transform <Collection>,
internal::collection_base_member <Collection>,
internal::collection_base_is_any <Collection>,
internal::collection_base_is_all <Collection>,
internal::collection_base_contains <Collection>,
internal::collection_base_for_each <Collection>,
internal::collection_base_sum <Collection>,
internal::collection_base_partial_sum<Collection>,
internal::collection_base_running_sum<Collection>,
internal::collection_base_adjacent <Collection>,
internal::collection_base_reduce <Collection>,
internal::collection_base_max <Collection>,
internal::collection_base_min <Collection>,
internal::collection_base_sort <Collection>,
internal::collection_base_reversed <Collection>,
internal::collection_base_enumerate <Collection>
{
auto as_range(void) const noexcept;
};
template<typename ItType, typename EndType>
struct basic_range : range_base<basic_range<ItType, EndType>>
{
private:
using self_t = basic_range<ItType, EndType>;
private:
ItType _it;
[[no_unique_address]] EndType _end;
public:
basic_range(ItType it, EndType end)
: _it(std::move(it)), _end(std::move(end))
{}
template<typename T, std::size_t N>
basic_range(T (&arr)[N]) noexcept
: _it(std::begin(arr)), _end(std::end(arr))
{}
template<typename T, std::size_t N>
basic_range(T const (&arr)[N]) noexcept
: _it(std::begin(arr)), _end(std::end(arr))
{}
bool at_end(void) const noexcept
{ return this->_it == this->_end; }
self_t &operator ++ (void)
{
++this->_it;
return *this;
}
decltype(auto) operator * (void) const noexcept
{ return *this->_it; }
auto const &operator -> (void) const noexcept
{ return this->_it; }
friend bool operator == (self_t const &lhs, [[maybe_unused]] universal_end_sentinel<self_t> rhs) noexcept
{ return lhs.at_end(); }
friend bool operator == ([[maybe_unused]] universal_end_sentinel<self_t> lhs, self_t const &rhs) noexcept
{ return rhs.at_end(); }
friend bool operator != (self_t const &lhs, [[maybe_unused]] universal_end_sentinel<self_t> rhs) noexcept
{ return !lhs.at_end(); }
friend bool operator != ([[maybe_unused]] universal_end_sentinel<self_t> lhs, self_t const &rhs) noexcept
{ return !rhs.at_end(); }
self_t begin(void) const noexcept
{ return *this; }
universal_end_sentinel<self_t> end(void) const noexcept
{ return universal_end_sentinel<self_t>{}; }
decltype(auto) front(void) const noexcept
{ return **this; }
};
template<typename T>
struct iota_range : range_base<iota_range<T>>
{
private:
using self_t = iota_range<T>;
private:
T _it;
T _end;
public:
iota_range(T it, T end)
: _it(std::move(it)), _end(std::move(end))
{}
template<typename T1, typename T2>
iota_range(T1 it, T2 end)
: _it(std::move(it)), _end(std::move(end))
{}
bool at_end(void) const noexcept
{ return this->_it == this->_end; }
self_t &operator ++ (void)
{
++this->_it;
return *this;
}
decltype(auto) operator * (void) const noexcept
{ return this->_it; }
auto const &operator -> (void) const noexcept
{ return &this->_it; }
friend bool operator == (self_t const &lhs, [[maybe_unused]] universal_end_sentinel<self_t> rhs) noexcept
{ return lhs.at_end(); }
friend bool operator == ([[maybe_unused]] universal_end_sentinel<self_t> lhs, self_t const &rhs) noexcept
{ return rhs.at_end(); }
friend bool operator != (self_t const &lhs, [[maybe_unused]] universal_end_sentinel<self_t> rhs) noexcept
{ return !lhs.at_end(); }
friend bool operator != ([[maybe_unused]] universal_end_sentinel<self_t> lhs, self_t const &rhs) noexcept
{ return !rhs.at_end(); }
self_t begin(void) const noexcept
{ return *this; }
universal_end_sentinel<self_t> end(void) const noexcept
{ return universal_end_sentinel<self_t>{}; }
decltype(auto) front(void) const noexcept
{ return **this; }
};
template<typename ItType, typename EndType, typename FilterFuncType>
struct filter_range : range_base<filter_range<ItType, EndType, FilterFuncType>>
{
private:
using self_t = filter_range<ItType, EndType, FilterFuncType>;
private:
ItType _it;
[[no_unique_address]] EndType _end;
[[no_unique_address]] mutable FilterFuncType _filter_function;
public:
filter_range(ItType it, EndType end, FilterFuncType func)
: _it(std::move(it)), _end(std::move(end)), _filter_function(std::move(func))
{
while (this->_it != this->_end && !this->_filter_function(*this->_it))
{
++this->_it;
}
}
bool at_end(void) const noexcept
{ return this->_it == this->_end; }
self_t &operator ++ (void)
{
do
{
++this->_it;
} while (this->_it != this->_end && !this->_filter_function(*this->_it));
return *this;
}
decltype(auto) operator * (void) const noexcept
{ return *this->_it; }
auto const &operator -> (void) const noexcept
{ return this->_it; }
friend bool operator == (self_t const &lhs, [[maybe_unused]] universal_end_sentinel<self_t> rhs) noexcept
{ return lhs.at_end(); }
friend bool operator == ([[maybe_unused]] universal_end_sentinel<self_t> lhs, self_t const &rhs) noexcept
{ return rhs.at_end(); }
friend bool operator != (self_t const &lhs, [[maybe_unused]] universal_end_sentinel<self_t> rhs) noexcept
{ return !lhs.at_end(); }
friend bool operator != ([[maybe_unused]] universal_end_sentinel<self_t> lhs, self_t const &rhs) noexcept
{ return !rhs.at_end(); }
self_t begin(void) const noexcept
{ return *this; }
universal_end_sentinel<self_t> end(void) const noexcept
{ return universal_end_sentinel<self_t>{}; }
decltype(auto) front(void) const noexcept
{ return **this; }
};
template<typename ItType, typename EndType, typename TransformFuncType>
struct transform_range : range_base<transform_range<ItType, EndType, TransformFuncType>>
{
private:
using self_t = transform_range<ItType, EndType, TransformFuncType>;
private:
ItType _it;
[[no_unique_address]] EndType _end;
[[no_unique_address]] mutable TransformFuncType _transform_func;
public:
transform_range(ItType it, EndType end, TransformFuncType func)
: _it(std::move(it)), _end(std::move(end)), _transform_func(std::move(func))
{}
bool at_end(void) const noexcept
{ return this->_it == this->_end; }
self_t &operator ++ (void)
{
++this->_it;
return *this;
}
decltype(auto) operator * (void) const noexcept
{ return this->_transform_func(*this->_it); }
auto const &operator -> (void) const noexcept
{ return this->_it; }
friend bool operator == (self_t const &lhs, [[maybe_unused]] universal_end_sentinel<self_t> rhs) noexcept
{ return lhs.at_end(); }
friend bool operator == ([[maybe_unused]] universal_end_sentinel<self_t> lhs, self_t const &rhs) noexcept
{ return rhs.at_end(); }
friend bool operator != (self_t const &lhs, [[maybe_unused]] universal_end_sentinel<self_t> rhs) noexcept
{ return !lhs.at_end(); }
friend bool operator != ([[maybe_unused]] universal_end_sentinel<self_t> lhs, self_t const &rhs) noexcept
{ return !rhs.at_end(); }
self_t begin(void) const noexcept
{ return *this; }
universal_end_sentinel<self_t> end(void) const noexcept
{ return universal_end_sentinel<self_t>{}; }
decltype(auto) front(void) const noexcept
{ return **this; }
};
template<typename ItType, typename EndType>
struct enumerate_range : range_base<enumerate_range<ItType, EndType>>
{
private:
using self_t = enumerate_range<ItType, EndType>;
private:
ItType _it;
[[no_unique_address]] EndType _end;
std::size_t _index;
public:
enumerate_range(ItType it, EndType end)
: _it(std::move(it)), _end(std::move(end)), _index(0)
{}
bool at_end(void) const noexcept
{ return this->_it == this->_end; }
self_t &operator ++ (void)
{
++this->_it;
++this->_index;
return *this;
}
decltype(auto) operator * (void) const noexcept
{ return std::pair<std::size_t, decltype(*this->_it)>{ this->_index, *this->_it }; }
auto const &operator -> (void) const noexcept
{ return this->_it; }
friend bool operator == (self_t const &lhs, [[maybe_unused]] universal_end_sentinel<self_t> rhs) noexcept
{ return lhs.at_end(); }
friend bool operator == ([[maybe_unused]] universal_end_sentinel<self_t> lhs, self_t const &rhs) noexcept
{ return rhs.at_end(); }
friend bool operator != (self_t const &lhs, [[maybe_unused]] universal_end_sentinel<self_t> rhs) noexcept
{ return !lhs.at_end(); }
friend bool operator != ([[maybe_unused]] universal_end_sentinel<self_t> lhs, self_t const &rhs) noexcept
{ return !rhs.at_end(); }
self_t begin(void) const noexcept
{ return *this; }
universal_end_sentinel<self_t> end(void) const noexcept
{ return universal_end_sentinel<self_t>{}; }
decltype(auto) front(void) const noexcept
{ return **this; }
};
template<typename ItType, typename EndType>
struct partial_sum_range : range_base<partial_sum_range<ItType, EndType>>
{
private:
using self_t = partial_sum_range<ItType, EndType>;
using sum_t = std::decay_t<decltype(*std::declval<ItType const &>())>;
private:
ItType _it;
[[no_unique_address]] EndType _end;
sum_t _sum;
public:
partial_sum_range(ItType it, EndType end)
: _it(std::move(it)), _end(std::move(end)), _sum(this->_it != this->_end ? *this->_it : sum_t{})
{}
bool at_end(void) const noexcept
{ return this->_it == this->_end; }
self_t &operator ++ (void)
{
++this->_it;
if (!this->at_end())
{
this->_sum += *this->_it;
}
return *this;
}
sum_t const &operator * (void) const noexcept
{ return this->_sum; }
sum_t const *operator -> (void) const noexcept
{ return &this->_sum; }
friend bool operator == (self_t const &lhs, [[maybe_unused]] universal_end_sentinel<self_t> rhs) noexcept
{ return lhs.at_end(); }
friend bool operator == ([[maybe_unused]] universal_end_sentinel<self_t> lhs, self_t const &rhs) noexcept
{ return rhs.at_end(); }
friend bool operator != (self_t const &lhs, [[maybe_unused]] universal_end_sentinel<self_t> rhs) noexcept
{ return !lhs.at_end(); }
friend bool operator != ([[maybe_unused]] universal_end_sentinel<self_t> lhs, self_t const &rhs) noexcept
{ return !rhs.at_end(); }
self_t begin(void) const noexcept
{ return *this; }
universal_end_sentinel<self_t> end(void) const noexcept
{ return universal_end_sentinel<self_t>{}; }
decltype(auto) front(void) const noexcept
{ return **this; }
};
template<typename ItType, typename EndType, std::size_t N>
struct running_sum_range : range_base<running_sum_range<ItType, EndType, N>>
{
static_assert(N != 0, "invalid size 0 for running_sum_range");
private:
using self_t = running_sum_range<ItType, EndType, N>;
using sum_t = std::decay_t<decltype(*std::declval<ItType const &>())>;
private:
ItType _it;
[[no_unique_address]] EndType _end;
std::array<sum_t, N> _sum;
public:
running_sum_range(ItType it, EndType end)
: _it(std::move(it)), _end(std::move(end)), _sum()
{
for (std::size_t i = 0; i < N; ++i)
{
if (i != 0)
{
++this->_it;
}
if (this->at_end())
{
break;
}
auto &&new_val = *this->_it;
for (std::size_t j = 0; j < i + 1; ++j)
{
this->_sum[j] += new_val;
}
}
}
bool at_end(void) const noexcept
{ return this->_it == this->_end; }
self_t &operator ++ (void)
{
++this->_it;
if (!this->at_end())
{
auto &&new_val = *this->_it;
for (std::size_t i = 0; i < this->_sum.size() - 1; ++i)
{
this->_sum[i] = std::move(this->_sum[i + 1]) + new_val;
}
this->_sum[this->_sum.size() - 1] = new_val;
}
return *this;
}
sum_t const &operator * (void) const noexcept
{ return this->_sum[0]; }
sum_t const *operator -> (void) const noexcept
{ return &this->_sum[0]; }
friend bool operator == (self_t const &lhs, [[maybe_unused]] universal_end_sentinel<self_t> rhs) noexcept
{ return lhs.at_end(); }
friend bool operator == ([[maybe_unused]] universal_end_sentinel<self_t> lhs, self_t const &rhs) noexcept
{ return rhs.at_end(); }
friend bool operator != (self_t const &lhs, [[maybe_unused]] universal_end_sentinel<self_t> rhs) noexcept
{ return !lhs.at_end(); }
friend bool operator != ([[maybe_unused]] universal_end_sentinel<self_t> lhs, self_t const &rhs) noexcept
{ return !rhs.at_end(); }
self_t begin(void) const noexcept
{ return *this; }
universal_end_sentinel<self_t> end(void) const noexcept
{ return universal_end_sentinel<self_t>{}; }
decltype(auto) front(void) const noexcept
{ return **this; }
};
template<typename ItType, typename EndType>
struct adjacent_range : range_base<adjacent_range<ItType, EndType>>
{
private:
using self_t = adjacent_range<ItType, EndType>;
using deref_t = decltype(*std::declval<ItType const &>());
using prev_t = std::decay_t<deref_t>;
private:
ItType _it;
[[no_unique_address]] EndType _end;
prev_t _prev;
public:
adjacent_range(ItType it, EndType end)
: _it(std::move(it)), _end(std::move(end)), _prev([this]() -> prev_t {
if (this->_it != this->_end)
{
auto result = *this->_it;
++this->_it;
return result;
}
else
{
return prev_t{};
}
}())
{}
bool at_end(void) const noexcept
{ return this->_it == this->_end; }
self_t &operator ++ (void)
{
this->_prev = *this->_it;
++this->_it;
return *this;
}
std::pair<prev_t const &, deref_t> operator * (void) const noexcept
{
return { this->_prev, *this->_it };
}
friend bool operator == (self_t const &lhs, [[maybe_unused]] universal_end_sentinel<self_t> rhs) noexcept
{ return lhs.at_end(); }
friend bool operator == ([[maybe_unused]] universal_end_sentinel<self_t> lhs, self_t const &rhs) noexcept
{ return rhs.at_end(); }
friend bool operator != (self_t const &lhs, [[maybe_unused]] universal_end_sentinel<self_t> rhs) noexcept
{ return !lhs.at_end(); }
friend bool operator != ([[maybe_unused]] universal_end_sentinel<self_t> lhs, self_t const &rhs) noexcept
{ return !rhs.at_end(); }
self_t begin(void) const noexcept
{ return *this; }
universal_end_sentinel<self_t> end(void) const noexcept
{ return universal_end_sentinel<self_t>{}; }
decltype(auto) front(void) const noexcept
{ return **this; }
};
template<typename ItType, typename EndType>
basic_range(ItType it, EndType end) -> basic_range<ItType, EndType>;
template<typename T, std::size_t N>
basic_range(T (&arr)[N]) -> basic_range<decltype(std::begin(arr)), decltype(std::end(arr))>;
template<typename T, std::size_t N>
basic_range(T const (&arr)[N]) -> basic_range<decltype(std::begin(arr)), decltype(std::end(arr))>;
template<typename T>
iota_range(T it, T end) -> iota_range<T>;
template<typename T1, typename T2>
iota_range(T1 it, T2 end) -> iota_range<std::common_type_t<T1, T2>>;
template<typename ItType, typename EndType, typename FilterFuncType>
filter_range(ItType it, EndType end, FilterFuncType func) -> filter_range<ItType, EndType, FilterFuncType>;
template<typename ItType, typename EndType, typename TransformFuncType>
transform_range(ItType it, EndType end, TransformFuncType func) -> transform_range<ItType, EndType, TransformFuncType>;
template<typename ItType, typename EndType>
enumerate_range(ItType it, EndType end) -> enumerate_range<ItType, EndType>;
template<typename ItType, typename EndType>
partial_sum_range(ItType it, EndType end) -> partial_sum_range<ItType, EndType>;
template<typename ItType, typename EndType>
adjacent_range(ItType it, EndType end) -> adjacent_range<ItType, EndType>;
template<typename Collection>
auto collection_base<Collection>::as_range(void) const noexcept
{
auto const self = static_cast<Collection const *>(this);
return basic_range{ self->begin(), self->end() };
}
template<
typename Range,
std::enable_if_t<std::is_reference_v<Range> && !std::is_rvalue_reference_v<Range>, int> = 0
>
auto to_range(Range &&range) noexcept
{
return basic_range{
std::begin(std::forward<Range>(range)),
std::end (std::forward<Range>(range))
};
}
template<typename T1, typename T2>
auto iota(T1 begin, T2 end) noexcept
{
return iota_range{
std::move(begin),
std::move(end)
};
}
template<
typename Range, typename Func,
std::enable_if_t<std::is_reference_v<Range> && !std::is_rvalue_reference_v<Range>, int> = 0
>
auto filter(Range &&range, Func &&func) noexcept
{
return filter_range{
std::forward<Range>(range).begin(),
std::forward<Range>(range).end(),
std::forward<Func>(func)
};
}
template<
typename Range, typename Func,
std::enable_if_t<std::is_reference_v<Range> && !std::is_rvalue_reference_v<Range>, int> = 0
>
auto transform(Range &&range, Func &&func) noexcept
{
return transform_range{
std::forward<Range>(range).begin(),
std::forward<Range>(range).end(),
std::forward<Func>(func)
};
}
namespace internal
{
template<typename Range>
template<typename Func>
auto range_base_filter<Range>::filter(Func &&func) const noexcept
{ return ::utils::filter(*static_cast<Range const *>(this), std::forward<Func>(func)); }
template<typename Collection>
template<typename Func>
auto collection_base_filter<Collection>::filter(Func &&func) const noexcept
{ return static_cast<Collection const *>(this)->as_range().filter(std::forward<Func>(func)); }
template<typename Range>
template<typename Func>
auto range_base_transform<Range>::transform(Func &&func) const noexcept
{ return ::utils::transform(*static_cast<Range const *>(this), std::forward<Func>(func)); }
template<typename Collection>
template<typename Func>
auto collection_base_transform<Collection>::transform(Func &&func) const noexcept
{ return static_cast<Collection const *>(this)->as_range().transform(std::forward<Func>(func)); }
template<typename Range>
template<auto MemberPtr>
auto range_base_member<Range>::member(void) const noexcept
{
return ::utils::transform(
*static_cast<Range const *>(this),
[](auto const &value) -> auto const & { return value.*MemberPtr; }
);
}
template<typename Collection>
template<auto MemberPtr>
auto collection_base_member<Collection>::member(void) const noexcept
{ return static_cast<Collection const *>(this)->as_range().template member<MemberPtr>(); }
namespace internal
{
template<typename T, typename ...Ts>
struct has_emplace_back
{
using yes = int;
using no = char;
template<typename U, typename ...Us>
static auto test(int) -> decltype(std::declval<U>().emplace_back(std::declval<Us>()...), yes{});
template<typename U, typename ...Us>
static no test(...);
static constexpr bool value = std::is_same_v<decltype(test<T, Ts...>(42)), yes>;
};
} // namespace internal
template<typename Range>
template<template<typename ...Ts> typename Vec>
auto range_base_collect<Range>::collect(void) const
{
auto const self = static_cast<Range const *>(this);
Vec<std::decay_t<decltype(self->operator*())>> result;
for (auto &&it : *self)
{
if constexpr (internal::has_emplace_back<decltype(result), decltype(it)>::value)
{
result.emplace_back(std::forward<decltype(it)>(it));
}
else
{
result.push_back(std::forward<decltype(it)>(it));
}
}
return result;
}
template<typename Range>
template<typename Vec>
Vec range_base_collect<Range>::collect(void) const
{
auto const self = static_cast<Range const *>(this);
Vec result;
for (auto &&it : *self)
{
if constexpr (internal::has_emplace_back<decltype(result), decltype(it)>::value)
{
result.emplace_back(std::forward<decltype(it)>(it));
}
else
{
result.push_back(std::forward<decltype(it)>(it));
}
}
return result;
}
template<typename Range>
std::size_t range_base_count<Range>::count(void) const noexcept
{
auto const self = static_cast<Range const *>(this);
auto &&it = self->begin();
auto &&end = self->end();
std::size_t result = 0;
while (it != end)
{
++it;
++result;
}
return result;