Iterator FIXME ...
| 27 | |
| 28 | // Iterator FIXME ... |
| 29 | type Iterator interface { |
| 30 | HasNext() bool |
| 31 | Fetch() (interface{}, errors.Error) |
| 32 | Close() errors.Error |
| 33 | } |
| 34 | |
| 35 | // DalCursorIterator FIXME ... |
| 36 | type DalCursorIterator struct { |
no outgoing calls
no test coverage detected