| 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_; } |
| 7002 | }; |
| 7003 | |
| 7004 | /** |
no outgoing calls
no test coverage detected