HasNext - Checks whether next tuple exists
()
| 23 | |
| 24 | // HasNext - Checks whether next tuple exists |
| 25 | func (i *TupleIterator) HasNext() bool { |
| 26 | return i.index < len(i.tuples) |
| 27 | } |
| 28 | |
| 29 | // GetNext - Get next tuple |
| 30 | func (i *TupleIterator) GetNext() *base.Tuple { |
no outgoing calls