-
-
Notifications
You must be signed in to change notification settings - Fork 699
/
meta.d
1534 lines (1331 loc) · 40.4 KB
/
meta.d
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
// Written in the D programming language.
/**
* Templates to manipulate
* $(DDSUBLINK spec/template, variadic-templates, template parameter sequences)
* (also known as $(I alias sequences)).
*
* Some operations on alias sequences are built into the language,
* such as `S[i]`, which accesses the element at index `i` in the
* sequence. `S[low .. high]` returns a new alias
* sequence that is a slice of the old one.
*
* For more information, see $(DDLINK ctarguments, Compile-time Sequences, Compile-time Sequences).
*
* $(B Note:) Several templates in this module use or operate on eponymous templates that
* take a single argument and evaluate to a boolean constant. Such templates
* are referred to as $(I template predicates).
*
* $(SCRIPT inhibitQuickIndex = 1;)
* $(DIVC quickindex,
* $(BOOKTABLE ,
* $(TR $(TH Category) $(TH Templates))
* $(TR $(TD Building blocks) $(TD
* $(LREF Alias)
* $(LREF AliasSeq)
* $(LREF aliasSeqOf)
* ))
* $(TR $(TD Alias sequence filtering) $(TD
* $(LREF Erase)
* $(LREF EraseAll)
* $(LREF Filter)
* $(LREF NoDuplicates)
* $(LREF Stride)
* ))
* $(TR $(TD Alias sequence type hierarchy) $(TD
* $(LREF DerivedToFront)
* $(LREF MostDerived)
* ))
* $(TR $(TD Alias sequence transformation) $(TD
* $(LREF Repeat)
* $(LREF Replace)
* $(LREF ReplaceAll)
* $(LREF Reverse)
* $(LREF staticMap)
* $(LREF staticSort)
* ))
* $(TR $(TD Alias sequence searching) $(TD
* $(LREF allSatisfy)
* $(LREF anySatisfy)
* $(LREF staticIndexOf)
* ))
* $(TR $(TD Template predicates) $(TD
* $(LREF templateAnd)
* $(LREF templateNot)
* $(LREF templateOr)
* $(LREF staticIsSorted)
* ))
* $(TR $(TD Template instantiation) $(TD
* $(LREF ApplyLeft)
* $(LREF ApplyRight)
* $(LREF Instantiate)
* ))
* ))
*
* References:
* Based on ideas in Table 3.1 from
* $(LINK2 http://amazon.com/exec/obidos/ASIN/0201704315/ref=ase_classicempire/102-2957199-2585768,
* Modern C++ Design),
* Andrei Alexandrescu (Addison-Wesley Professional, 2001)
* Copyright: Copyright The D Language Foundation 2005 - 2015.
* License: $(HTTP www.boost.org/LICENSE_1_0.txt, Boost License 1.0).
* Authors:
* $(HTTP digitalmars.com, Walter Bright),
* $(HTTP klickverbot.at, David Nadlinger)
* Source: $(PHOBOSSRC std/meta.d)
*/
module std.meta;
import std.traits : isAggregateType, Unqual, isIterable;
import std.range.primitives : isInfinite;
/**
* Creates a sequence of zero or more aliases. This is most commonly
* used as template parameters or arguments.
*
* In previous versions of Phobos, this was known as `TypeTuple`.
*/
alias AliasSeq(TList...) = TList;
///
@safe unittest
{
import std.meta;
alias TL = AliasSeq!(int, double);
int foo(TL td) // same as int foo(int, double);
{
return td[0] + cast(int) td[1];
}
}
///
@safe unittest
{
alias TL = AliasSeq!(int, double);
alias Types = AliasSeq!(TL, char);
static assert(is(Types == AliasSeq!(int, double, char)));
}
///
@safe unittest
{
// Creates a compile-time sequence of function call expressions
// that each call `func` with the next variadic template argument
template Map(alias func, args...)
{
auto ref lazyItem() {return func(args[0]);}
static if (args.length == 1)
{
alias Map = lazyItem;
}
else
{
// recurse
alias Map = AliasSeq!(lazyItem, Map!(func, args[1 .. $]));
}
}
static void test(int a, int b)
{
assert(a == 4);
assert(b == 16);
}
static int a = 2;
static int b = 4;
test(Map!(i => i ^^ 2, a, b));
assert(a == 2);
assert(b == 4);
test(Map!((ref i) => i *= i, a, b));
assert(a == 4);
assert(b == 16);
static void testRef(ref int a, ref int b)
{
assert(a++ == 16);
assert(b++ == 256);
}
testRef(Map!(function ref(ref i) => i *= i, a, b));
assert(a == 17);
assert(b == 257);
}
/**
* Allows `alias`ing of any single symbol, type or compile-time expression.
*
* Not everything can be directly aliased. An alias cannot be declared
* of - for example - a literal:
* ---
* alias a = 4; //Error
* ---
* With this template any single entity can be aliased:
* ---
* alias b = Alias!4; //OK
* ---
* See_Also:
* To alias more than one thing at once, use $(LREF AliasSeq).
*/
alias Alias(alias a) = a;
/// Ditto
alias Alias(T) = T;
///
@safe unittest
{
// Without Alias this would fail if Args[0] was e.g. a value and
// some logic would be needed to detect when to use enum instead
alias Head(Args...) = Alias!(Args[0]);
alias Tail(Args...) = Args[1 .. $];
alias Blah = AliasSeq!(3, int, "hello");
static assert(Head!Blah == 3);
static assert(is(Head!(Tail!Blah) == int));
static assert((Tail!Blah)[1] == "hello");
}
///
@safe unittest
{
alias a = Alias!(123);
static assert(a == 123);
enum abc = 1;
alias b = Alias!(abc);
static assert(b == 1);
alias c = Alias!(3 + 4);
static assert(c == 7);
alias concat = (s0, s1) => s0 ~ s1;
alias d = Alias!(concat("Hello", " World!"));
static assert(d == "Hello World!");
alias e = Alias!(int);
static assert(is(e == int));
alias f = Alias!(AliasSeq!(int));
static assert(!is(typeof(f[0]))); //not an AliasSeq
static assert(is(f == int));
auto g = 6;
alias h = Alias!g;
++h;
assert(g == 7);
}
package template OldAlias(alias a)
{
static if (__traits(compiles, { alias x = a; }))
alias OldAlias = a;
else static if (__traits(compiles, { enum x = a; }))
enum OldAlias = a;
else
static assert(0, "Cannot alias " ~ a.stringof);
}
package template OldAlias(T)
if (!isAggregateType!T || is(Unqual!T == T))
{
alias OldAlias = T;
}
@safe unittest
{
static struct Foo {}
//static assert(is(OldAlias!(const(Foo)) == const Foo));
static assert(is(OldAlias!(const(int)) == const(int)));
static assert(OldAlias!123 == 123);
enum abc = 123;
static assert(OldAlias!abc == 123);
}
/**
* Returns the index of the first occurrence of `args[0]` in the
* sequence `args[1 .. $]`. `args` may be types or compile-time values.
* If not found, `-1` is returned.
*/
template staticIndexOf(args...)
if (args.length >= 1)
{
enum staticIndexOf =
{
static foreach (idx, arg; args[1 .. $])
static if (isSame!(args[0], arg))
// `if (__ctfe)` is redundant here but avoids the "Unreachable code" warning.
if (__ctfe) return idx;
return -1;
}();
}
///
@safe unittest
{
import std.stdio;
void foo()
{
writefln("The index of long is %s",
staticIndexOf!(long, AliasSeq!(int, long, double)));
// prints: The index of long is 1
}
}
@safe unittest
{
static assert(staticIndexOf!( byte, byte, short, int, long) == 0);
static assert(staticIndexOf!(short, byte, short, int, long) == 1);
static assert(staticIndexOf!( int, byte, short, int, long) == 2);
static assert(staticIndexOf!( long, byte, short, int, long) == 3);
static assert(staticIndexOf!( char, byte, short, int, long) == -1);
static assert(staticIndexOf!( -1, byte, short, int, long) == -1);
static assert(staticIndexOf!(void) == -1);
static assert(staticIndexOf!("abc", "abc", "def", "ghi", "jkl") == 0);
static assert(staticIndexOf!("def", "abc", "def", "ghi", "jkl") == 1);
static assert(staticIndexOf!("ghi", "abc", "def", "ghi", "jkl") == 2);
static assert(staticIndexOf!("jkl", "abc", "def", "ghi", "jkl") == 3);
static assert(staticIndexOf!("mno", "abc", "def", "ghi", "jkl") == -1);
static assert(staticIndexOf!( void, "abc", "def", "ghi", "jkl") == -1);
static assert(staticIndexOf!(42) == -1);
static assert(staticIndexOf!(void, 0, "void", void) == 2);
static assert(staticIndexOf!("void", 0, void, "void") == 2);
}
/**
* Returns an `AliasSeq` created from `args[1 .. $]` with the first occurrence,
* if any, of `args[0]` removed.
*/
template Erase(args...)
if (args.length >= 1)
{
private enum pos = staticIndexOf!(args[0], args[1 .. $]);
static if (pos < 0)
alias Erase = args[1 .. $];
else
alias Erase = AliasSeq!(args[1 .. pos + 1], args[pos + 2 .. $]);
}
///
@safe unittest
{
alias Types = AliasSeq!(int, long, double, char);
alias TL = Erase!(long, Types);
static assert(is(TL == AliasSeq!(int, double, char)));
}
@safe unittest
{
static assert(Pack!(Erase!(int,
short, int, int, 4)).
equals!(short, int, 4));
static assert(Pack!(Erase!(1,
real, 3, 1, 4, 1, 5, 9)).
equals!(real, 3, 4, 1, 5, 9));
}
/**
* Returns an `AliasSeq` created from `args[1 .. $]` with all occurrences,
* if any, of `args[0]` removed.
*/
template EraseAll(args...)
if (args.length >= 1)
{
alias EraseAll = AliasSeq!();
static foreach (arg; args[1 .. $])
static if (!isSame!(args[0], arg))
EraseAll = AliasSeq!(EraseAll, arg);
}
///
@safe unittest
{
alias Types = AliasSeq!(int, long, long, int);
static assert(is(EraseAll!(long, Types) == AliasSeq!(int, int)));
}
@safe unittest
{
static assert(Pack!(EraseAll!(int,
short, int, int, 4)).
equals!(short, 4));
static assert(Pack!(EraseAll!(1,
real, 3, 1, 4, 1, 5, 9)).
equals!(real, 3, 4, 5, 9));
}
/*
* Returns `items[0 .. $ - 1]` if `item[$ - 1]` found in `items[0 .. $ - 1]`, and
* `items` otherwise.
*
* Params:
* items = list to be processed
*
* See_Also: $(LREF NoDuplicates)
*/
private template AppendUnique(items...)
{
alias head = items[0 .. $ - 1];
static if (staticIndexOf!(items[$ - 1], head) >= 0)
alias AppendUnique = head;
else
alias AppendUnique = items;
}
/**
* Returns an `AliasSeq` created from `args` with all duplicate
* types removed.
*/
template NoDuplicates(args...)
{
alias NoDuplicates = AliasSeq!();
static foreach (arg; args)
NoDuplicates = AppendUnique!(NoDuplicates, arg);
}
///
@safe unittest
{
alias Types = AliasSeq!(int, long, long, int, float);
alias TL = NoDuplicates!(Types);
static assert(is(TL == AliasSeq!(int, long, float)));
}
@safe unittest
{
import std.range : iota;
// https://issues.dlang.org/show_bug.cgi?id=14561: huge enums
alias LongList = Repeat!(1500, int);
static assert(NoDuplicates!LongList.length == 1);
// https://issues.dlang.org/show_bug.cgi?id=17995: huge enums, revisited
alias a = NoDuplicates!(AliasSeq!(1, Repeat!(1000, 3)));
alias b = NoDuplicates!(AliasSeq!(1, Repeat!(10, 3)));
static assert(a.length == b.length);
static assert(NoDuplicates!(aliasSeqOf!(iota(7)), aliasSeqOf!(iota(7))) == aliasSeqOf!(iota(7)));
static assert(NoDuplicates!(aliasSeqOf!(iota(8)), aliasSeqOf!(iota(8))) == aliasSeqOf!(iota(8)));
}
@safe unittest
{
static assert(
Pack!(
NoDuplicates!(1, int, 1, NoDuplicates, int, NoDuplicates, real))
.equals!(1, int, NoDuplicates, real));
}
/**
* Returns an `AliasSeq` created from TList with the first occurrence
* of T, if found, replaced with U.
*/
template Replace(T, U, TList...)
{
alias Replace = GenericReplace!(T, U, TList).result;
}
/// Ditto
template Replace(alias T, U, TList...)
{
alias Replace = GenericReplace!(T, U, TList).result;
}
/// Ditto
template Replace(T, alias U, TList...)
{
alias Replace = GenericReplace!(T, U, TList).result;
}
/// Ditto
template Replace(alias T, alias U, TList...)
{
alias Replace = GenericReplace!(T, U, TList).result;
}
///
@safe unittest
{
alias Types = AliasSeq!(int, long, long, int, float);
alias TL = Replace!(long, char, Types);
static assert(is(TL == AliasSeq!(int, char, long, int, float)));
}
// [internal]
private template GenericReplace(args...)
if (args.length >= 2)
{
alias from = OldAlias!(args[0]);
alias to = OldAlias!(args[1]);
alias tuple = args[2 .. $];
static if (tuple.length)
{
alias head = OldAlias!(tuple[0]);
alias tail = tuple[1 .. $];
static if (isSame!(from, head))
alias result = AliasSeq!(to, tail);
else
alias result = AliasSeq!(head,
GenericReplace!(from, to, tail).result);
}
else
{
alias result = AliasSeq!();
}
}
@safe unittest
{
static assert(Pack!(Replace!(byte, ubyte,
short, byte, byte, byte)).
equals!(short, ubyte, byte, byte));
static assert(Pack!(Replace!(1111, byte,
2222, 1111, 1111, 1111)).
equals!(2222, byte, 1111, 1111));
static assert(Pack!(Replace!(byte, 1111,
short, byte, byte, byte)).
equals!(short, 1111, byte, byte));
static assert(Pack!(Replace!(1111, "11",
2222, 1111, 1111, 1111)).
equals!(2222, "11", 1111, 1111));
}
/**
* Returns an `AliasSeq` created from `args[2 .. $]` with all occurrences
* of `args[0]`, if any, replaced with `args[1]`.
*/
template ReplaceAll(args...)
{
alias ReplaceAll = AliasSeq!();
static foreach (arg; args[2 .. $])
{
static if (isSame!(args[0], arg))
ReplaceAll = AliasSeq!(ReplaceAll, args[1]);
else
ReplaceAll = AliasSeq!(ReplaceAll, arg);
}
}
///
@safe unittest
{
alias Types = AliasSeq!(int, long, long, int, float);
alias TL = ReplaceAll!(long, char, Types);
static assert(is(TL == AliasSeq!(int, char, char, int, float)));
}
@safe unittest
{
static assert(Pack!(ReplaceAll!(byte, ubyte,
byte, short, byte, byte)).
equals!(ubyte, short, ubyte, ubyte));
static assert(Pack!(ReplaceAll!(1111, byte,
1111, 2222, 1111, 1111)).
equals!(byte, 2222, byte, byte));
static assert(Pack!(ReplaceAll!(byte, 1111,
byte, short, byte, byte)).
equals!(1111, short, 1111, 1111));
static assert(Pack!(ReplaceAll!(1111, "11",
1111, 2222, 1111, 1111)).
equals!("11", 2222, "11", "11"));
}
/**
* Returns an `AliasSeq` created from `args` with the order reversed.
*/
template Reverse(args...)
{
alias Reverse = AliasSeq!();
static foreach_reverse (arg; args)
Reverse = AliasSeq!(Reverse, arg);
}
///
@safe unittest
{
alias Types = AliasSeq!(int, long, long, int, float, byte, ubyte, short, ushort, uint);
alias TL = Reverse!(Types);
static assert(is(TL == AliasSeq!(uint, ushort, short, ubyte, byte, float, int, long, long, int)));
}
/**
* Returns the type from `TList` that is the most derived from type `T`.
* If no such type is found, `T` is returned.
*/
template MostDerived(T, TList...)
{
import std.traits : Select;
alias MostDerived = T;
static foreach (U; TList)
MostDerived = Select!(is(U : MostDerived), U, MostDerived);
}
///
@safe unittest
{
class A { }
class B : A { }
class C : B { }
alias Types = AliasSeq!(A, C, B);
MostDerived!(Object, Types) x; // x is declared as type C
static assert(is(typeof(x) == C));
}
/**
* Returns an `AliasSeq` with the elements of TList sorted so that the most
* derived types come first.
*/
template DerivedToFront(TList...)
{
private enum cmp(T, U) = is(T : U);
alias DerivedToFront = staticSort!(cmp, TList);
}
///
@safe unittest
{
class A { }
class B : A { }
class C : B { }
alias Types = AliasSeq!(A, C, B);
alias TL = DerivedToFront!(Types);
static assert(is(TL == AliasSeq!(C, B, A)));
alias TL2 = DerivedToFront!(A, A, A, B, B, B, C, C, C);
static assert(is(TL2 == AliasSeq!(C, C, C, B, B, B, A, A, A)));
}
/**
Evaluates to `AliasSeq!(fun!(args[0]), fun!(args[1]), ..., fun!(args[$ - 1]))`.
*/
template staticMap(alias fun, args...)
{
alias staticMap = AliasSeq!();
static foreach (arg; args)
staticMap = AliasSeq!(staticMap, fun!arg);
}
///
@safe unittest
{
import std.traits : Unqual;
alias TL = staticMap!(Unqual, int, const int, immutable int, uint, ubyte, byte, short, ushort);
static assert(is(TL == AliasSeq!(int, int, int, uint, ubyte, byte, short, ushort)));
}
@safe unittest
{
import std.traits : Unqual;
// empty
alias Empty = staticMap!(Unqual);
static assert(Empty.length == 0);
// single
alias Single = staticMap!(Unqual, const int);
static assert(is(Single == AliasSeq!int));
alias T = staticMap!(Unqual, int, const int, immutable int, uint, ubyte, byte, short, ushort, long);
static assert(is(T == AliasSeq!(int, int, int, uint, ubyte, byte, short, ushort, long)));
// @@@ BUG @@@ The test below exposes failure of the straightforward use.
// See @adamdruppe's comment to https://github.com/dlang/phobos/pull/8039
template id(alias what) {
enum id = __traits(identifier, what);
}
enum A { a }
static assert(staticMap!(id, A.a) == AliasSeq!("a"));
}
// regression test for https://issues.dlang.org/show_bug.cgi?id=21088
@system unittest // typeid opEquals is @system
{
enum getTypeId(T) = typeid(T);
alias A = staticMap!(getTypeId, int);
assert(A == typeid(int));
}
version (StdDdoc)
{
/**
Tests whether all given items satisfy a template predicate, i.e. evaluates to
$(D F!(T[0]) && F!(T[1]) && ... && F!(T[$ - 1])).
Evaluation is $(I not) short-circuited if a false result is encountered; the
template predicate must be instantiable with all the given items.
*/
template allSatisfy(alias F, T...)
{
import core.internal.traits : allSat = allSatisfy;
alias allSatisfy = allSat!(F, T);
}
}
else
{
import core.internal.traits : allSat = allSatisfy;
alias allSatisfy = allSat;
}
///
@safe unittest
{
import std.traits : isIntegral;
static assert(!allSatisfy!(isIntegral, int, double));
static assert( allSatisfy!(isIntegral, int, long));
}
version (StdDdoc)
{
/**
Tests whether any given items satisfy a template predicate, i.e. evaluates to
$(D F!(T[0]) || F!(T[1]) || ... || F!(T[$ - 1])).
Evaluation is short-circuited if a true result is encountered; the
template predicate must be instantiable with one of the given items.
*/
template anySatisfy(alias F, T...)
{
import core.internal.traits : anySat = anySatisfy;
alias anySatisfy = anySat!(F, T);
}
}
else
{
import core.internal.traits : anySat = anySatisfy;
alias anySatisfy = anySat;
}
///
@safe unittest
{
import std.traits : isIntegral;
static assert(!anySatisfy!(isIntegral, string, double));
static assert( anySatisfy!(isIntegral, int, double));
}
/**
* Filters an `AliasSeq` using a template predicate. Returns an
* `AliasSeq` of the elements which satisfy the predicate.
*/
template Filter(alias pred, args...)
{
alias Filter = AliasSeq!();
static foreach (arg; args)
static if (pred!arg)
Filter = AliasSeq!(Filter, arg);
}
///
@safe unittest
{
import std.traits : isNarrowString, isUnsigned;
alias Types1 = AliasSeq!(string, wstring, dchar[], char[], dstring, int);
alias TL1 = Filter!(isNarrowString, Types1);
static assert(is(TL1 == AliasSeq!(string, wstring, char[])));
alias Types2 = AliasSeq!(int, byte, ubyte, dstring, dchar, uint, ulong);
alias TL2 = Filter!(isUnsigned, Types2);
static assert(is(TL2 == AliasSeq!(ubyte, uint, ulong)));
}
@safe unittest
{
import std.traits : isPointer;
static assert(is(Filter!(isPointer, int, void*, char[], int*) == AliasSeq!(void*, int*)));
static assert(is(Filter!isPointer == AliasSeq!()));
}
@safe unittest
{
enum Yes(T) = true;
static struct S {}
static assert(is(Filter!(Yes, const(int), const(S)) == AliasSeq!(const(int), const(S))));
}
// Used in template predicate unit tests below.
private version (StdUnittest)
{
template testAlways(T...)
{
enum testAlways = true;
}
template testNever(T...)
{
enum testNever = false;
}
template testError(T...)
{
static assert(false, "Should never be instantiated.");
}
}
/**
* Negates the passed template predicate.
*/
template templateNot(alias pred)
{
enum templateNot(T...) = !pred!T;
}
///
@safe unittest
{
import std.traits : isPointer;
alias isNoPointer = templateNot!isPointer;
static assert(!isNoPointer!(int*));
static assert(allSatisfy!(isNoPointer, string, char, float));
}
version (StdUnittest)
@safe unittest
{
static foreach (T; AliasSeq!(int, staticMap, 42))
{
static assert(!Instantiate!(templateNot!testAlways, T));
static assert(Instantiate!(templateNot!testNever, T));
}
}
/**
* Combines several template predicates using logical AND, i.e. constructs a new
* predicate which evaluates to true for a given input T if and only if all of
* the passed predicates are true for T.
*
* The predicates are evaluated from left to right, aborting evaluation in a
* short-cut manner if a false result is encountered, in which case the latter
* instantiations do not need to compile.
*/
template templateAnd(Preds...)
{
template templateAnd(T...)
{
static if (Preds.length == 0)
{
enum templateAnd = true;
}
else
{
static if (Instantiate!(Preds[0], T))
alias templateAnd = Instantiate!(.templateAnd!(Preds[1 .. $]), T);
else
enum templateAnd = false;
}
}
}
///
@safe unittest
{
import std.traits : isNumeric, isUnsigned;
alias storesNegativeNumbers = templateAnd!(isNumeric, templateNot!isUnsigned);
static assert(storesNegativeNumbers!int);
static assert(!storesNegativeNumbers!string && !storesNegativeNumbers!uint);
// An empty sequence of predicates always yields true.
alias alwaysTrue = templateAnd!();
static assert(alwaysTrue!int);
}
version (StdUnittest)
@safe unittest
{
static foreach (T; AliasSeq!(int, staticMap, 42))
{
static assert( Instantiate!(templateAnd!(), T));
static assert( Instantiate!(templateAnd!(testAlways), T));
static assert( Instantiate!(templateAnd!(testAlways, testAlways), T));
static assert(!Instantiate!(templateAnd!(testNever), T));
static assert(!Instantiate!(templateAnd!(testAlways, testNever), T));
static assert(!Instantiate!(templateAnd!(testNever, testAlways), T));
static assert(!Instantiate!(templateAnd!(testNever, testError), T));
static assert(!is(typeof(Instantiate!(templateAnd!(testAlways, testError), T))));
}
}
/**
* Combines several template predicates using logical OR, i.e. constructs a new
* predicate which evaluates to true for a given input T if and only at least
* one of the passed predicates is true for T.
*
* The predicates are evaluated from left to right, aborting evaluation in a
* short-cut manner if a true result is encountered, in which case the latter
* instantiations do not need to compile.
*/
template templateOr(Preds...)
{
template templateOr(T...)
{
static if (Preds.length == 0)
{
enum templateOr = false;
}
else
{
static if (Instantiate!(Preds[0], T))
enum templateOr = true;
else
alias templateOr = Instantiate!(.templateOr!(Preds[1 .. $]), T);
}
}
}
///
@safe unittest
{
import std.traits : isPointer, isUnsigned;
alias isPtrOrUnsigned = templateOr!(isPointer, isUnsigned);
static assert( isPtrOrUnsigned!uint && isPtrOrUnsigned!(short*));
static assert(!isPtrOrUnsigned!int && !isPtrOrUnsigned!(string));
// An empty sequence of predicates never yields true.
alias alwaysFalse = templateOr!();
static assert(!alwaysFalse!int);
}
version (StdUnittest)
@safe unittest
{
static foreach (T; AliasSeq!(int, staticMap, 42))
{
static assert( Instantiate!(templateOr!(testAlways), T));
static assert( Instantiate!(templateOr!(testAlways, testAlways), T));
static assert( Instantiate!(templateOr!(testAlways, testNever), T));
static assert( Instantiate!(templateOr!(testNever, testAlways), T));
static assert(!Instantiate!(templateOr!(), T));
static assert(!Instantiate!(templateOr!(testNever), T));
static assert( Instantiate!(templateOr!(testAlways, testError), T));
static assert( Instantiate!(templateOr!(testNever, testAlways, testError), T));
// DMD @@BUG@@: Assertion fails for int, seems like a error gagging
// problem. The bug goes away when removing some of the other template
// instantiations in the module.
// static assert(!is(typeof(Instantiate!(templateOr!(testNever, testError), T))));
}
}
/**
* Converts any foreach-iterable entity (e.g. an input range) to an alias sequence.
*
* Params:
* iter = the entity to convert into an `AliasSeq`. It must be able to be able to be iterated over using
* a $(LINK2 https://dlang.org/spec/statement.html#foreach-statement, foreach-statement).
*
* Returns:
* An `AliasSeq` containing the values produced by iterating over `iter`.
*/
template aliasSeqOf(alias iter)
if (isIterable!(typeof(iter)) && !isInfinite!(typeof(iter)))
{
import std.array : array;
struct Impl
{
static foreach (size_t i, el; iter.array)
mixin(`auto e` ~ i.stringof ~ ` = el;`);
}
enum aliasSeqOf = Impl.init.tupleof;
}
///
@safe unittest
{
import std.algorithm.iteration : map;
import std.algorithm.sorting : sort;
import std.string : capitalize;
struct S
{
int a;
int c;
int b;
}
alias capMembers = aliasSeqOf!([__traits(allMembers, S)].sort().map!capitalize());
static assert(capMembers[0] == "A");
static assert(capMembers[1] == "B");
static assert(capMembers[2] == "C");
}
///
@safe unittest
{
static immutable REF = [0, 1, 2, 3];
foreach (I, V; aliasSeqOf!([0, 1, 2, 3]))
{
static assert(V == I);
static assert(V == REF[I]);
}
}