| 404 | |
| 405 | template <typename CharIterator> |
| 406 | constexpr ssize_t StringIterator<CharIterator>::bytesDistanceFrom(StringIterator other) const |
| 407 | { |
| 408 | return (it - other.it) * static_cast<ssize_t>(sizeof(CodeUnit)); |
| 409 | } |
| 410 | |
| 411 | // StringIteratorASCII |
| 412 | [[nodiscard]] constexpr bool StringIteratorASCII::advanceUntilMatches(CodePoint c) |
no outgoing calls
no test coverage detected