| 155 | |
| 156 | iterator begin() noexcept { return _begin(); } |
| 157 | iterator end() noexcept { return {this, _capacity}; } |
| 158 | iterator begin() const noexcept { return ((SparseArray*)this)->_begin(); } |
| 159 | iterator end() const noexcept { return {(SparseArray*)this, _capacity}; } |
| 160 | bool iterator_valid(iterator it) const noexcept { |
no outgoing calls
no test coverage detected