#include "string_matrix.hpp" StringMatrix::StringMatrix(const IBounds &bounds) : _rows(bounds.height()), _columns(bounds.width()) { _matrix.reserve(bounds.height()); _matrix.assign(_matrix.capacity(), std::vector(bounds.width())); }; void StringMatrix::fill(std::string_view element) { for (unsigned int row = 0U; row < _matrix.capacity(); row++) { std::vector row_vector = _matrix[row]; for (unsigned int column = 0U; column < row_vector.capacity(); column++) { _matrix[row][column] = element; } } } std::string_view StringMatrix::get(const IVector2 &pos) const { return _matrix[pos.y()][pos.x()]; } void StringMatrix::set(const IVector2 &pos, std::string_view element) { _matrix[pos.y()][pos.x()] = element; } unsigned int StringMatrix::rows() const { return _rows; } unsigned int StringMatrix::columns() const { return _columns; }