String.opAssign

Assigns a stringish range.

  1. String opAssign(S that)
  2. String opAssign(S that)
  3. String opAssign(S that)
    struct String
    ref
    opAssign
    (
    S
    )
    ()

Parameters

S

String type.

that S

Initial string.

Return Value

Type: String

$(D_KEYWORD this).

Throws

$(D_PSYMBOL UTFException).

Examples

auto s = String("Оловом светится лужная голь...");
s = "Грустная песня, ты - русская боль.";
assert(s == "Грустная песня, ты - русская боль.");

Meta