@brief append at the last row
| 200 | |
| 201 | /// @brief append at the last row |
| 202 | void pushBack(ValueType const &v) { |
| 203 | data_.push_back(v); |
| 204 | dim2_start_.back() += 1; |
| 205 | } |
| 206 | |
| 207 | /// @brief append at the last row |
| 208 | void pushBack(ValueType &&v) { |
no test coverage detected