Array.append

Append a single element.

Note: an Array or range will be appended as one single element of type Array, *not* concatenated to this Array. Use appendRange or appendArray to concatenate/chain ranges or Arrays into one.

  1. void append(T t)
    struct Array
    @nogc nothrow
    void
    append
    (
    T
    )
    (
    auto ref T t
    )
  2. template opOpAssign(string op)

Meta