| 179 | const_reverse_iterator rbegin() const FL_NOEXCEPT { return const_reverse_iterator(end()); } |
| 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 ======= |
nothing calls this directly
no test coverage detected