| 35 | constexpr S end() const { return last_; } |
| 36 | |
| 37 | [[nodiscard]] constexpr subrange next(std::ptrdiff_t n = 1) const |
| 38 | { |
| 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_}; |