VectorImpl.opOpAssign

Append a range to the vector.

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

Parameters

other T[]

the other range to append.

Meta