Matrix.opBinary

Undocumented in source. Be warned that the author may not have intended to support it.
  1. auto opBinary(Matrix!(bH, bW, X) mtr)
  2. auto opBinary(X b)
  3. auto opBinary(Matrix!(bH, bW, X) mtr)
  4. auto opBinary(Vector!(K, X, AS) v)
    struct Matrix(size_t H, size_t W, E)
    pure const
    opBinary
    (
    string op
    size_t K
    X
    alias string AS
    )
    (
    in Vector!(K, X, AS) v
    )
    if (
    op == "*" &&
    allowSomeOp(W, K)
    &&
    isValidOp!("*", E, X)
    &&
    isValidOp!("+", E, E)
    )

Meta