TData.opOpAssign

Append data to this Data. Unlike concatenation (a ~ b), appending (a ~= b) will preallocate.

  1. TData opOpAssign(Appendable data)
    template opOpAssign(string op)
    opOpAssign
    (
    Appendable data
    )
    if (
    op == "~"
    )
  2. TData opOpAssign(TData data)
  3. TData opOpAssign(T value)
  4. TData opOpAssign(const(void)[] data)

Members

Functions

opOpAssign
TData opOpAssign(Appendable data)
Undocumented in source. Be warned that the author may not have intended to support it.
opOpAssign
TData opOpAssign(TData data)
Undocumented in source. Be warned that the author may not have intended to support it.
opOpAssign
TData opOpAssign(T value)
Undocumented in source. Be warned that the author may not have intended to support it.
opOpAssign
deprecated TData opOpAssign(const(void)[] data)
Undocumented in source. Be warned that the author may not have intended to support it.

Meta