Iterators
| 89 | |
| 90 | // Iterators |
| 91 | V* begin() { return data(); } |
| 92 | const V* begin() const { return data(); } |
| 93 | V* end() { return data() + size(); } |
| 94 | const V* end() const { return data() + size(); } |
nothing calls this directly
no outgoing calls
no test coverage detected