| 86 | constexpr const data_type& back() const { return elems[array_size - 1]; } |
| 87 | |
| 88 | constexpr data_type* begin() { return elems; } |
| 89 | constexpr const data_type* begin() const { return elems; } |
| 90 | |
| 91 | constexpr data_type* end() { return elems + array_size; } |
nothing calls this directly
no outgoing calls
no test coverage detected