Modifier Member Functions
| 162 | |
| 163 | /// Modifier Member Functions |
| 164 | void remove_prefix(size_type n) noexcept |
| 165 | { |
| 166 | assert (n < len_ && "Data would point out of bounds"); |
| 167 | data_ += n; |
| 168 | len_ -= n; |
| 169 | } |
| 170 | |
| 171 | void remove_suffix(size_type n) noexcept |
| 172 | { |
no outgoing calls