| 1757 | case_fold_view(V base) : base_(std::move(base)) {} |
| 1758 | |
| 1759 | iterator begin() const |
| 1760 | { |
| 1761 | return iterator( |
| 1762 | text::detail::begin(base_), text::detail::end(base_)); |
| 1763 | } |
| 1764 | auto end() const { return text::detail::end(base_); } |
| 1765 | |
| 1766 | private: |
no test coverage detected