Explicit const iterator accessors
| 405 | |
| 406 | // Explicit const iterator accessors |
| 407 | const_iterator cbegin() const { |
| 408 | return const_iterator(this, 0); |
| 409 | } |
| 410 | |
| 411 | const_iterator cend() const { |
| 412 | return const_iterator(this, mSize); |
nothing calls this directly
no test coverage detected