RCString.opOpAssign

Undocumented in source. Be warned that the author may not have intended to support it.
  1. typeof(this) opOpAssign(typeof(this) rhs)
  2. typeof(this) opOpAssign(string rhs)
  3. typeof(this) opOpAssign(C c)
    struct RCString
    typeof(this)
    opOpAssign
    (
    string op
    C
    )
    (
    C c
    )
    if (
    op == "~" &&
    isSomeChar!C
    )
  4. typeof(this) opOpAssign(R r)

Examples

auto r1 = RCString("abc");
r1 ~= 'd';
assert(r1.equal("abcd"));

Meta