Vector.opAssign

Assign a Vector with a static array type.

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

Meta