| 99 | constexpr auto rbegin() const { return reverse_iterator<const data_type*>(end()); } |
| 100 | |
| 101 | constexpr auto rend() { return reverse_iterator<data_type*>(begin()); } |
| 102 | constexpr auto rend() const { return reverse_iterator<const data_type*>(begin()); } |
| 103 | |
| 104 | constexpr auto crbegin() const { return rbegin(); } |
nothing calls this directly
no outgoing calls
no test coverage detected