Done returns true if no values remain.
()
| 10 | |
| 11 | // Done returns true if no values remain. |
| 12 | func (i *Iter) Done() bool { |
| 13 | return len(*i) == 0 |
| 14 | } |
| 15 | |
| 16 | // Next returns the body of the next value along with a boolean that is true if |
| 17 | // the value is a container. It returns an empty slice for an empty or |
no outgoing calls