added operator square brackets

This commit is contained in:
2024-12-21 19:29:33 +03:00
parent 390e584aee
commit e497308349
2 changed files with 13 additions and 0 deletions

View File

@@ -66,6 +66,11 @@ namespace omath
m_data = other.m_data;
}
OMATH_API constexpr Type& operator[](const size_t row, const size_t col)
{
return At(row, col);
}
OMATH_API constexpr Mat(Mat&& other) noexcept
{
m_data = std::move(other.m_data);