Go to the source code of this file.
|
template<class Row , class Class , typename Result = void, typename... Args> |
using | jami::CallbackMatrix1D = Matrix1D< Row, Result(Class::*)(Args... args)> |
| Create an array of callbacks.
|
|
template<class Row , class Column , class Class , typename Result = void, typename... Args> |
using | jami::CallbackMatrix2D = Matrix2D< Row, Column, void(Class::*)(Args... args)> |
| Create a method callback matrix.
|
|
template<class Row > |
using | jami::EnumClassNames = Matrix1D< Row, std::string_view > |
| A helper to type to match serializable string to enum elements.
|
|
template<class Row , class Column , typename Value > |
using | jami::Matrix2D = Matrix1D< Row, Matrix1D< Column, Value > > |
| Create a matrix type with 2 enum class dimensions M[I,J] = V ^ ^ ^ | | | Rows <— | | Columns <--— | Value <-------—.
|
|