Vector.opAssign

Assign from other vectors types (same size, compatible type).

  1. Vector opAssign(U x)
  2. Vector opAssign(U arr)
  3. Vector opAssign(U arr)
  4. Vector opAssign(U u)
  5. Vector opAssign(U x)
    struct Vector(T, int N)
    nothrow @nogc ref pure nothrow
    opAssign
    (
    U
    )
    (
    U x
    )
    if (
    isVector!U &&
    isAssignable!(T, U._T)
    &&
    (!is(U : Vector))
    &&
    (U._N == _N)
    )

Meta