| 456 | } |
| 457 | |
| 458 | inline size_t find_first_not_of(TCharType c) const noexcept { |
| 459 | return find_first_not_of(c, 0); |
| 460 | } |
| 461 | |
| 462 | inline size_t find_first_not_of(TCharType c, size_t pos) const noexcept { |
| 463 | return find_first_not_of(TStringView(&c, 1), pos); |