logCount counts the yielded records.
| 12 | |
| 13 | // logCount counts the yielded records. |
| 14 | type logCount struct { |
| 15 | Iterator |
| 16 | n int |
| 17 | } |
| 18 | |
| 19 | // Each yields to the inner iterator while counting the records. |
| 20 | // Reports the record number on an error. |
nothing calls this directly
no outgoing calls
no test coverage detected