| 418 | type_ *end() const noexcept { return data_ + size_; } |
| 419 | type_ &operator[](std::size_t index) noexcept { return data_[index]; } |
| 420 | type_ operator[](std::size_t index) const noexcept { return data_[index]; } |
| 421 | }; |
| 422 | |
| 423 | static void sorting(bm::State &state) { |
nothing calls this directly
no outgoing calls
no test coverage detected