Vec.this

Constructs a vector as a copy of the other.

  1. this(T[size] elements)
  2. this(T[] elements)
  3. this(T value)
  4. this(MY_TYPE other)
    struct Vec(T, size_t size)
    @nogc
    this
    (
    MY_TYPE other
    )
    if (
    isNumeric!T &&
    size > 0
    )

Parameters

other MY_TYPE

The vector to copy.

Meta