| 112 | |
| 113 | iterator begin() const noexcept { return data_; } |
| 114 | iterator end() const noexcept { return data_ + len_; } |
| 115 | |
| 116 | iterator rbegin() const noexcept { return reverse_iterator(end()); } |
| 117 | iterator rend() const noexcept { return reverse_iterator(begin()); } |
nothing calls this directly
no outgoing calls
no test coverage detected