Vector.opBinary

Appends a value to an array using << operator

  1. typeof(this) opBinary(T rhs)
  2. typeof(this) opBinary(T[] rhs)
    struct Vector(T)
    pragma(inline) ref nothrow @nogc
    typeof(this)
    opBinary
    (
    string op
    )
    (
    in T[] rhs
    )
    if (
    op == "<<"
    )
  3. typeof(this) opBinary(typeof(this) rhs)

Parameters

rhs T[]

The value to add

Meta