| 93 | constexpr const data_type* end() const { return elems + array_size; } |
| 94 | |
| 95 | constexpr const data_type* cbegin() const { return begin(); } |
| 96 | constexpr const data_type* cend() const { return end(); } |
| 97 | |
| 98 | constexpr auto rbegin() { return reverse_iterator<data_type*>(end()); } |
nothing calls this directly
no outgoing calls
no test coverage detected