RecordReader is the interface that wraps the action of reading records from a resource. The data module RecordReader interface is implemented by types that can read data that can be treated as records, from data sources such as a CSV file, etc.
| 107 | // The data module RecordReader interface is implemented by types that can read data that can be |
| 108 | // treated as records, from data sources such as a CSV file, etc. |
| 109 | type RecordReader interface { |
| 110 | Read() (any, error) |
| 111 | } |
| 112 | |
| 113 | // NewSharedArrayFrom creates a new shared array from the provided [RecordReader]. |
| 114 | // |
no outgoing calls
no test coverage detected
searching dependent graphs…