HashTable.opAssign

Assigns another hash table.

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 HashTable(Key, Value, alias hasher = hash)
    ref
    typeof(this)
    opAssign
    (
    S
    )
    (
    ref S that
    )
    if (
    isHashFunction!(hasher, Key)
    )
  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