| 2904 | const_reverse_iterator crend() const noexcept sz_lifetime_bound_ { return view().crend(); } |
| 2905 | |
| 2906 | reference operator[](size_type pos) noexcept sz_lifetime_bound_ { return string_.internal.start[pos]; } |
| 2907 | const_reference operator[](size_type pos) const noexcept sz_lifetime_bound_ { return string_.internal.start[pos]; } |
| 2908 | |
| 2909 | reference front() noexcept sz_lifetime_bound_ { return string_.internal.start[0]; } |