| 64 | return const_reverse_iterator(this->begin()); |
| 65 | } |
| 66 | [[nodiscard]] const_reverse_iterator crend() const noexcept { // NOLINT |
| 67 | return const_reverse_iterator(this->begin()); |
| 68 | } |
| 69 | }; |
| 70 | |
| 71 | inline std::ostream& operator<<(std::ostream& os, StringView const v) { |