VoidBufferAsArrayOf.opOpAssign

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.

  1. T[] opOpAssign(T[] arr)
    struct VoidBufferAsArrayOf(T)
    T[]
    opOpAssign
    (
    string op : "~"
    )
    (
    in T[] arr
    )
  2. T[] opOpAssign(T element)

Parameters

arr T[]

elements to append

Return Value

Type: T[]

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

Meta