Returns a read-only (constant) iterator that points one past the last element in the dimension array. * * @return an iterator. */
| 258 | * @return an iterator. |
| 259 | */ |
| 260 | typename std::array<T, num_max_dimensions>::const_iterator cend() const |
| 261 | { |
| 262 | return end(); |
| 263 | } |
| 264 | |
| 265 | protected: |
| 266 | /** Protected destructor. */ |
no test coverage detected