17 #include "exception.h" 19 #include <third_party/json/json.h> 34 ArrayView(T* array,
size_t size) : array_(array), size_(size) {}
38 assert(index < size_);
43 size_t size()
const {
return size_; }
62 Matrix(
size_t rows,
size_t cols) : rows(rows), cols(cols) {
65 values.resize(rows * cols);
71 return { &values[row * cols], cols };
77 return { &values[row * cols], cols };
81 bool empty()
const {
return values.empty(); }
85 json_obj[
"rows"] = m.rows;
86 json_obj[
"cols"] = m.cols;
87 json_obj[
"values"] = m.values;
92 m.rows = json_obj.at(
"rows");
93 m.cols = json_obj.at(
"cols");
94 m.values = json_obj.at(
"values").get<vector<T>>();
96 if ((m.rows == 0) != (m.cols == 0))
99 if (m.rows * m.cols != m.values.size())
ArrayView(T *array, size_t size)
Constructs an array view.
Definition: matrix.h:34
T & operator[](size_t index) const
Indexed element access.
Definition: matrix.h:37
The base for exception types in the Darwin framework.
Definition: exception.h:27
Generic utilities.
Definition: exception.h:24
ArrayView< T > operator[](size_t row)
Indexed access to a row in the matrix.
Definition: matrix.h:69
A dynamically sized 2D matrix.
Definition: matrix.h:57
size_t size() const
The count of elements in the array view.
Definition: matrix.h:43
Matrix(size_t rows, size_t cols)
Constructs a matrix with the specified number of rows and columns.
Definition: matrix.h:62
friend void from_json(const json &json_obj, Matrix &m)
Conversion from json.
Definition: matrix.h:91
bool empty() const
Returns true if the matrix is empty.
Definition: matrix.h:81
friend void to_json(json &json_obj, const Matrix &m)
Conversion to json.
Definition: matrix.h:84
ArrayView< const T > operator[](size_t row) const
Indexed access to a row in the matrix.
Definition: matrix.h:75
A 2d array slice (zero-based index, known size)
Definition: matrix.h:31