Matrix.opBinaryRight

Multiply column vector by the matrix

  1. Vector!(T, 2) opBinaryRight(Vector!(T, 2) v)
    struct Matrix(T, size_t N)
    const
    static if(N == 2)
    Vector!(T, 2)
    opBinaryRight
    (
    string op
    )
    (
    Vector!(T, 2) v
    )
    if (
    op == "*"
    )
  2. Vector!(T, 3) opBinaryRight(Vector!(T, 3) v)
  3. Vector!(T, N) opBinaryRight(Vector!(T, N) v)
  4. Vector!(T, 3) opBinaryRight(Vector!(T, 3) v)

Meta