| 185 | |
| 186 | constexpr T* begin() const { return start(); } |
| 187 | constexpr T* end() const { return start() + size(); } |
| 188 | |
| 189 | // Access individual vector elements - checks bounds in debug mode. |
| 190 | T& operator[](size_t index) const { |
no test coverage detected