| 76 | class MapForwardIterFunctor { |
| 77 | public: |
| 78 | MapForwardIterFunctor(ffi::MapObj::iterator iter, ffi::MapObj::iterator end) |
| 79 | : iter_(iter), end_(end) {} |
| 80 | // 0 get current key |
| 81 | // 1 get current value |
| 82 | // 2 move to next: return true if success, false if end |
nothing calls this directly
no outgoing calls
no test coverage detected