| 117 | iterator rend() const noexcept { return reverse_iterator(begin()); } |
| 118 | |
| 119 | const_iterator cbegin() const noexcept { return begin(); } |
| 120 | const_iterator cend() const noexcept { return end(); } |
| 121 | |
| 122 | const_iterator crbegin() const noexcept { return rbegin(); } |
no test coverage detected