mirror of
https://github.com/xfarrow/lasd.git
synced 2025-02-18 05:00:41 +01:00
15 lines
197 B
C++
15 lines
197 B
C++
|
|
namespace lasd {
|
|
|
|
template <typename Data>
|
|
ulong Matrix<Data>::RowNumber() noexcept{
|
|
return rows;
|
|
}
|
|
|
|
template <typename Data>
|
|
ulong Matrix<Data>::ColumnNumber() noexcept{
|
|
return columns;
|
|
}
|
|
|
|
}
|