Returns an iterator pointing the first element of the Vector. */
| 66 | |
| 67 | /** Returns an iterator pointing the first element of the Vector. */ |
| 68 | iterator begin() { return _data.begin(); } |
| 69 | /** Returns an iterator pointing the first element of the Vector. */ |
| 70 | const_iterator begin() const { return _data.begin(); } |
| 71 |
no outgoing calls
no test coverage detected