| 404 | |
| 405 | struct CArrayObjPyIterator { |
| 406 | CArrayObjPyIterator(CArrayObj& Obj, py::object Ref): |
| 407 | Obj_(Obj), |
| 408 | Ref_(Ref) |
| 409 | { } |
| 410 | |
| 411 | py::object next() { |
| 412 | if (Index_ == Obj_.getNumElements()) |
nothing calls this directly
no outgoing calls
no test coverage detected