append

Undocumented in source. Be warned that the author may not have intended to support it.
  1. DE[] append(Buffer!(DE) dest, T arrays)
  2. DE[] append(DE[] dest, T arrays)
    DE[]
    append
    (
    DE
    T...
    )
    (
    ref DE[] dest
    ,)

Examples

auto buffer = createBuffer("zero");
append(buffer, "one", "two", "three");
test!("==")(buffer[], "zeroonetwothree");

Meta