| 257 | } |
| 258 | |
| 259 | basic_string<CharT, Traits> substr(size_type pos = 0, |
| 260 | size_type count = npos) const |
| 261 | { |
| 262 | return basic_string<CharT, Traits>(*this, pos, count); |
| 263 | } |
| 264 | |
| 265 | /// Finds the first character \p ch |
| 266 | size_type find(CharT ch, size_type pos = 0) const |
no outgoing calls