SmallString.append

  1. typeof(this) append(char c)
  2. typeof(this) append(const(char)[] str)
    struct SmallString(uint maxLength)
    extern (D) @safe pure @nogc ref @trusted
    typeof(this)
    append
    (
    scope const(char)[] str
    )
    if (
    maxLength
    )
  3. alias put = append
  4. alias opOpAssign(string op : "~") = append

Meta