VectorImpl.opOpAssign

Append a T to the vector.

  1. void opOpAssign(T value)
    struct VectorImpl(T, bool ownsMemory = true)
    @nogc @trusted
    void
    opOpAssign
    (
    string op = "~"
    )
    (
    auto ref T value
    )
  2. void opOpAssign(T[] other)

Parameters

value T

The value to append.

Meta