Matrix.det

Undocumented in source. Be warned that the author may not have intended to support it.
  1. mt det [@property getter]
    struct Matrix(type, int rows_, int cols_)
    @safe pure nothrow @property const
    static if((rows == 2) && (cols == 2))
    det
    ()
    if (
    (rows_ > 0) &&
    (cols_ > 0)
    )
  2. mt det [@property getter]
  3. mt det [@property getter]

Meta