| 392 | // Iterator support |
| 393 | iterator begin() FL_NOEXCEPT { return &memory()[0]; } |
| 394 | const_iterator begin() const FL_NOEXCEPT { return &memory()[0]; } |
| 395 | iterator end() FL_NOEXCEPT { return &memory()[current_size]; } |
| 396 | const_iterator end() const FL_NOEXCEPT { return &memory()[current_size]; } |
| 397 |
no test coverage detected