mirror of
https://github.com/xfarrow/lasd.git
synced 2025-06-05 21:49:14 +02:00
15 lines
209 B
C++
Executable File
15 lines
209 B
C++
Executable File
|
|
namespace lasd {
|
|
|
|
template <typename Data>
|
|
ulong Matrix<Data>::RowNumber() const noexcept{
|
|
return rows;
|
|
}
|
|
|
|
template <typename Data>
|
|
ulong Matrix<Data>::ColumnNumber() const noexcept{
|
|
return columns;
|
|
}
|
|
|
|
}
|