Matrix

Alias all (M, 0), (0, N) size static matrices into one single zero-sized type of size (0, 0).

  1. struct Matrix(Number)
  2. struct Matrix(Number, size_t _rowCount, size_t _columnCount)
  3. struct Matrix(Number, size_t _rowCount, size_t _columnCount)
  4. template Matrix(Number, size_t rowCount, size_t columnCount)
    template Matrix (
    Number
    size_t rowCount
    size_t columnCount
    ) if (
    (
    rowCount > 0 &&
    columnCount == 0
    )
    ||
    (
    rowCount == 0 &&
    columnCount > 0
    )
    ) {}

Meta