| 672 | |
| 673 | template <typename Func> |
| 674 | constexpr auto SC::StringView::withIterators(StringView s1, StringView s2, Func&& func) |
| 675 | { |
| 676 | return s1.withIterator([&s2, &func](auto it1) |
| 677 | { return s2.withIterator([&it1, &func](auto it2) { return func(it1, it2); }); }); |
| 678 | } |
| 679 | |
| 680 | constexpr bool SC::StringView::hasCompatibleEncoding(StringView str) const |
| 681 | { |
nothing calls this directly
no test coverage detected