| 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(); } |
| 95 | |
| 96 | // Element access: |
nothing calls this directly
no outgoing calls
no test coverage detected