Vector.push

Appends a value to an array

  1. typeof(this) push(T rhs)
  2. typeof(this) push(T[] rhs)
    struct Vector(T)
    ref nothrow @nogc
    typeof(this)
    push
    (
    in T[] rhs
    )
  3. typeof(this) push(typeof(this) rhs)

Parameters

rhs T[]

The value to add

Meta