| 55 | size_t index; |
| 56 | |
| 57 | iterator(const ArrayProxy& a_, size_t index_) : a(a_), index(index_) { |
| 58 | } |
| 59 | |
| 60 | value_type operator*() const { |
| 61 | size_t size = a.mpParent.children.size(); |
nothing calls this directly
no outgoing calls
no test coverage detected