~~~~Character Set Search~~~
| 440 | |
| 441 | //~~~~Character Set Search~~~ |
| 442 | inline size_t find_first_of(TCharType c) const noexcept { |
| 443 | return find_first_of(c, 0); |
| 444 | } |
| 445 | |
| 446 | inline size_t find_first_of(TCharType c, size_t pos) const noexcept { |
| 447 | return find(c, pos); |