| 617 | } |
| 618 | |
| 619 | auto operator[] ( size_type index ) const noexcept -> char { |
| 620 | assert(index < m_size); |
| 621 | return m_start[index]; |
| 622 | } |
| 623 | |
| 624 | public: // named queries |
| 625 | constexpr auto empty() const noexcept -> bool { |
nothing calls this directly
no outgoing calls
no test coverage detected