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, size_t N)
    nothrow ref pure nothrow @nogc
    opAssign
    (
    U
    )
    (
    U x
    )
    if (
    is(typeof(U._isVector)) &&
    is(U._T : T)
    &&
    (!is(U : Vector))
    &&
    (U._N == _N)
    )

Meta