append

Copies the contents of one element of arrays to another, starting at deststart, setting the length of the destination array first. Note that start may be greater than the initial length of dest; dest will then be extended appropriately.

Template params: func = function name for static assertion messages

  1. DE[] append(Buffer!(DE) dest, T arrays)
    DE[]
    append
    (
    DE
    T...
    )
    (
    ref Buffer!(DE) dest
    ,)
  2. DE[] append(DE[] dest, T arrays)

Parameters

dest Buffer!(DE)

reference to the destination array

arrays T

arrays to copy; a null parameter has the same effect as an empty array.

Return Value

Type: DE[]

dest

TODO: Could be made public but must then not rely on elements to be arrays.

Meta