Function Set.opAssign

Assigns another set.

ref typeof(this) opAssign(S) (
  ref S that
)
if (is(Unqual!S == Set));

ref typeof(this) opAssign(S) (
  S that
) @trusted
if (is(S == Set));

If that is passed by reference, it will be copied. If that is passed by value, it will be moved.

Parameters

NameDescription
S Content type.
that The value should be assigned.

Returns

this.