List of $(D_PSYMBOL Set) instances.
Set-theoretic intersection of all Sets.
alias S1 = Set!(2, 5, 8, 4); alias S2 = Set!(3, 8, 4, 1); static assert(Intersection!(S1, S2).Seq == AliasSeq!(8, 4)); static assert(Intersection!(S1).Seq == AliasSeq!(2, 5, 8, 4)); static assert(Intersection!().length == 0);
$(D_PSYMBOL Set).
Produces a $(D_PSYMBOL Set) that containing elements of Sets[0] that are also elements of all other sets in Sets.