| 571 | |
| 572 | template <typename StringIterator> |
| 573 | constexpr StringIterator SC::StringView::getIterator() const |
| 574 | { |
| 575 | // For GCC complaining about specialization in non-namespace scope |
| 576 | return getIterator(identity<StringIterator>()); |
| 577 | } |
| 578 | |
| 579 | template <typename Type> |
| 580 | constexpr SC::StringIteratorASCII SC::StringView::getIterator(identity<Type>) const |
nothing calls this directly
no test coverage detected