| 111 | /// Iterator Member Functions |
| 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()); } |
nothing calls this directly
no outgoing calls
no test coverage detected