| 6996 | |
| 6997 | type_ *begin() const noexcept { return data_; } |
| 6998 | type_ *end() const noexcept { return data_ + size_; } |
| 6999 | type_ &operator[](std::size_t idx) noexcept { return data_[idx]; } |
| 7000 | type_ operator[](std::size_t idx) const noexcept { return data_[idx]; } |
| 7001 | std::size_t size() const noexcept { return size_; } |
no outgoing calls
no test coverage detected