| 122 | using const_iterator = const T*; |
| 123 | |
| 124 | iterator begin() FLPURE {return &_get(0);} |
| 125 | iterator end() FLPURE {return &_get(_size);} |
| 126 | const_iterator begin() const FLPURE {return &_get(0);} |
| 127 | const_iterator end() const FLPURE {return &_get(_size);} |
no outgoing calls
no test coverage detected