| 90 | constexpr const data_type* begin() const { return elems; } |
| 91 | |
| 92 | constexpr data_type* end() { return elems + array_size; } |
| 93 | constexpr const data_type* end() const { return elems + array_size; } |
| 94 | |
| 95 | constexpr const data_type* cbegin() const { return begin(); } |
nothing calls this directly
no outgoing calls
no test coverage detected