(done bool)
| 71 | } |
| 72 | |
| 73 | func (v *VectorReader) Pull(done bool) (vector.Any, error) { |
| 74 | return v.ConcurrentPull(done, 0) |
| 75 | } |
| 76 | |
| 77 | func (v *VectorReader) ConcurrentPull(done bool, n int) (vector.Any, error) { |
| 78 | if done { |
nothing calls this directly
no test coverage detected