Matrix.determinant

Undocumented in source. Be warned that the author may not have intended to support it.
  1. T determinant()
    struct Matrix(T, int RowSize, int ColSize)
    const
    static if(RowSize == 3 && ColSize == 3 && (is(T == double) || is(T == float)))
    T
    determinant
    ()
    if (
    __traits(isArithmetic, T) &&
    RowSize > 0
    &&
    ColSize > 0
    )
  2. T determinant()

Meta