| 384 | |
| 385 | template <typename CharIterator> |
| 386 | constexpr bool StringIterator<CharIterator>::isFollowedBy(CodePoint c) |
| 387 | { |
| 388 | return it < end ? CharIterator::decode(getNextOf(it, end), end) == c : false; |
| 389 | } |
| 390 | |
| 391 | template <typename CharIterator> |
| 392 | constexpr bool StringIterator<CharIterator>::isPrecededBy(CodePoint c) |
no test coverage detected