MatrixExpression

式テンプレートでの、式を表します

  1. struct MatrixExpression(Lhs, string s, Rhs)
    struct MatrixExpression (
    Lhs
    string s
    Rhs
    ) if (
    isValidOperator!(Lhs, s, Rhs) &&
    (
    isAbstractMatrix!Lhs ||
    isAbstractMatrix!Rhs
    )
    &&
    !(
    isMatrix!Lhs ||
    isMatrix!Rhs
    )
    ) {
    enum etoSpec;
    }
  2. struct MatrixExpression(Lhs, string s, Rhs)
  3. auto matrixExpression(auto ref A a, auto ref B b)

Meta