pub(crate)modapi;/// Determines the order of stored elements in a matrix
#[repr(C)]pubenumOrder{/// Matrix is stored in row-major order
RowMajor =101,/// Matrix is stored in column-major order
ColMajor =102,}/// Wrapper for bare numbers that determines whether an input should be transposed or not
#[repr(C)]pubenumTranspose{/// Do not tranpose input matrix
NoTrans =111,/// Transpose input matrix
Trans =112,}