Set.opAssign

Assigns another set.

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

  1. typeof(this) opAssign(S that)
    struct Set(T, alias hasher = hash)
    ref
    typeof(this)
    opAssign
    (
    S
    )
    (
    ref S that
    )
    if (
    is(Unqual!S == Set)
    )
    if (
    isHashFunction!(hasher, T)
    )
  2. typeof(this) opAssign(S that)

Parameters

S

Content type.

that S

The value should be assigned.

Return Value

Type: typeof(this)

$(D_KEYWORD this).

Meta