Produces a $(D_PSYMBOL Set) containing all elements of the given Sets.
List of $(D_PSYMBOL Set) instances.
Set-theoretic union of all Sets.
alias S1 = Set!(2, 5, 8, 4); alias S2 = Set!(3, 8, 4, 1); static assert(Union!(S1, S2).Seq == AliasSeq!(2, 5, 8, 4, 3, 1));
$(D_PSYMBOL Set).
See Implementation
Produces a $(D_PSYMBOL Set) containing all elements of the given Sets.