Returns a read-only (constant) iterator that points to the first element in the dimension array. * * @return an iterator. */
| 234 | * @return an iterator. |
| 235 | */ |
| 236 | typename std::array<T, num_max_dimensions>::const_iterator cbegin() const |
| 237 | { |
| 238 | return begin(); |
| 239 | } |
| 240 | /** Returns a read/write iterator that points one past the last element in the dimension array. |
| 241 | * |
| 242 | * @return an iterator. |
no outgoing calls
no test coverage detected