Vector.opAssign

Assign with a dynamic array. Size is checked in debug-mode.

  1. Vector opAssign(U x)
  2. Vector opAssign(U arr)
  3. Vector opAssign(U arr)
    struct Vector(T, int N)
    nothrow @nogc ref pure nothrow
    opAssign
    (
    U
    )
    (
    U arr
    )
    if (
    isDynamicArray!(U) &&
    isAssignable!(T, typeof(arr[0]))
    )
  4. Vector opAssign(U u)
  5. Vector opAssign(U x)

Meta