| 39 | return subrange{detail::text::detail::next(first_), last_}; |
| 40 | } |
| 41 | [[nodiscard]] constexpr subrange prev(std::ptrdiff_t n = 1) const |
| 42 | { |
| 43 | return subrange{detail::text::detail::prev(first_), last_}; |
| 44 | } |
| 45 | |
| 46 | constexpr subrange & advance(std::ptrdiff_t n) |
| 47 | { |