Mat.opBinary

Returns this matrix * vector

  1. auto opBinary(float scalar)
  2. auto opBinary(Vec!(T, n) vector)
    struct Mat(T, ulong n)
    @nogc pure const nothrow
    opBinary
    (
    string s
    )
    (
    const Vec!(T, n) vector
    )
    if (
    s == "*"
    )
    if (
    n >= 2 &&
    isNumeric!T
    )
  3. auto opBinary(Mat!(T, n) other)
  4. auto opBinary(Mat!(T, n) other)

Meta