| 369 | |
| 370 | template <typename CharIterator> |
| 371 | constexpr bool StringIterator<CharIterator>::advanceCodePoints(size_t numCodePoints) |
| 372 | { |
| 373 | while (numCodePoints > 0) |
| 374 | { |
| 375 | numCodePoints -= 1; |
| 376 | if (it >= end) |
| 377 | { |
| 378 | return false; |
| 379 | } |
| 380 | it = getNextOf(it, end); |
| 381 | } |
| 382 | return true; |
| 383 | } |
| 384 | |
| 385 | template <typename CharIterator> |
| 386 | constexpr bool StringIterator<CharIterator>::isFollowedBy(CodePoint c) |
nothing calls this directly
no test coverage detected