| 180 | const_reverse_iterator rend() const FL_NOEXCEPT { return const_reverse_iterator(begin()); } |
| 181 | const_reverse_iterator crbegin() const FL_NOEXCEPT { return const_reverse_iterator(end()); } |
| 182 | const_reverse_iterator crend() const FL_NOEXCEPT { return const_reverse_iterator(begin()); } |
| 183 | |
| 184 | // ======= COMPARISON OPERATORS ======= |
| 185 | bool operator==(const basic_string& other) const FL_NOEXCEPT; |
nothing calls this directly
no test coverage detected