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
    )
    ) {}
  2. struct MatrixExpression(Lhs, string s, Rhs)
  3. auto matrixExpression(A a, B b)

Members

Functions

opIndex
auto opIndex(size_t i, size_t j)
Undocumented in source. Be warned that the author may not have intended to support it.

Manifest constants

etoSpec
enum etoSpec;
Undocumented in source.

Static functions

inferSize
InferredResult inferSize(Msize_t r, Msize_t c)
Undocumented in source. Be warned that the author may not have intended to support it.

Meta