| 72 | |
| 73 | constexpr T* begin() { return values; } |
| 74 | constexpr T* end() { return values + numValues; } |
| 75 | constexpr T& operator[](size_t idx) { return values[idx]; } |
| 76 | constexpr const T* begin() const { return values; } |
| 77 | constexpr const T* end() const { return values + numValues; } |
nothing calls this directly
no outgoing calls
no test coverage detected