appendCopy

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

Examples

mstring[] dest;
cstring src = "hello";
appendCopy(dest, src);
test!("==")(dest[0][], "hello");

Meta