Vector.push

Appends a value to an array

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

Parameters

rhs typeof(this)

The value to add

Meta