Matrix.opAssign

Assign with a static array of size R * C.

  1. Matrix opAssign(U x)
  2. Matrix opAssign(U x)
  3. Matrix opAssign(U x)
  4. Matrix opAssign(U x)
    struct Matrix(T, int R, int C)
    @nogc ref pure nothrow
    opAssign
    (
    U
    )
    (
    U x
    )
    if (
    (isStaticArray!U) &&
    is(typeof(x[0]) : T)
    &&
    (U.length == R * C)
    )
  5. Matrix opAssign(U x)
  6. Matrix opAssign(U x)
  7. Matrix opAssign(U x)

Meta