| 390 | |
| 391 | template <typename CharIterator> |
| 392 | constexpr bool StringIterator<CharIterator>::isPrecededBy(CodePoint c) |
| 393 | { |
| 394 | return it > start ? CharIterator::decode(getPreviousOf(it, start), it) == c : false; |
| 395 | } |
| 396 | |
| 397 | template <typename CharIterator> |
| 398 | constexpr StringIterator<CharIterator> StringIterator<CharIterator>::sliceFromStartUntil( |
nothing calls this directly
no test coverage detected