Appends an element to a list of arrays, and copies the contents of the passed source array into the new element, setting the length of the destination array first.
This function is provided as a shorthand for this common operation.
Template params: T = type of array element
reference to the destination array list
dest
Buffer!(char)[] dest; cstring src = "hello"; appendCopy(dest, src); test!("==")(dest[0][], "hello");
See Implementation
Appends an element to a list of arrays, and copies the contents of the passed source array into the new element, setting the length of the destination array first.
This function is provided as a shorthand for this common operation.
Template params: T = type of array element