VoidBufferAsArrayOf.opCatAssign

Appends an array of elements.

Note that mutable copies of appended elements are made internally, but to access them from the outside, the constness of T applies.

but are inaccessible from the outside.

  1. T[] opCatAssign(T[] arr)
    struct VoidBufferAsArrayOf(T)
    T[]
    opCatAssign
    (
    in T[] arr
    )
  2. T[] opCatAssign(T element)

Parameters

arr T[]

elements to append

Return Value

Type: T[]

a slice of this array, now with the specified elements appended

Meta