Element Access Member Functions
| 137 | |
| 138 | /// Element Access Member Functions |
| 139 | const_reference operator[](size_type idx) const noexcept |
| 140 | { |
| 141 | assert(idx < len_ && "string_view subscript out of range"); |
| 142 | return data_[idx]; |
| 143 | } |
| 144 | |
| 145 | // NOTE: 'at' not supported |
| 146 | //CharT at(size_type idx) const; |
nothing calls this directly
no outgoing calls
no test coverage detected