| 1203 | */ |
| 1204 | |
| 1205 | size_type find(const basic_string& str, size_type pos = 0) const noexcept |
| 1206 | { |
| 1207 | return find(str.c_str(), pos, str.size()); |
| 1208 | } |
| 1209 | |
| 1210 | size_type find(const value_type* str, size_type pos, size_type len) const noexcept |
| 1211 | { |