| 102 | constexpr auto rend() const { return reverse_iterator<const data_type*>(begin()); } |
| 103 | |
| 104 | constexpr auto crbegin() const { return rbegin(); } |
| 105 | constexpr auto crend() const { return rend(); } |
| 106 | |
| 107 | }; |
nothing calls this directly
no outgoing calls
no test coverage detected