package arrio

Import Path
	github.com/apache/arrow-go/v18/arrow/arrio (on go.dev)

Dependency Relation
	imports 3 packages, and imported by one package

Involved Source Files Package arrio exposes functions to manipulate records, exposing and using interfaces not unlike the ones defined in the stdlib io package.
Package-Level Type Names (total 3)
/* sort by: | */
Reader is the interface that wraps the Read method. Read reads the current record from the underlying stream and an error, if any. When the Reader reaches the end of the underlying stream, it returns (nil, io.EOF). *github.com/apache/arrow-go/v18/arrow/ipc.FileReader *github.com/apache/arrow-go/v18/arrow/ipc.Reader func Copy(dst Writer, src Reader) (n int64, err error) func CopyN(dst Writer, src Reader, n int64) (written int64, err error)
ReaderAt is the interface that wraps the ReadAt method. ReadAt reads the i-th record from the underlying stream and an error, if any. *github.com/apache/arrow-go/v18/arrow/ipc.FileReader
Writer is the interface that wraps the Write method. ( Writer) Write(rec arrow.RecordBatch) error *github.com/apache/arrow-go/v18/arrow/ipc.FileWriter *github.com/apache/arrow-go/v18/arrow/ipc.Writer func Copy(dst Writer, src Reader) (n int64, err error) func CopyN(dst Writer, src Reader, n int64) (written int64, err error)
Package-Level Functions (total 2)
Copy copies all the records available from src to dst. Copy returns the number of records copied and the first error encountered while copying, if any. A successful Copy returns err == nil, not err == EOF. Because Copy is defined to read from src until EOF, it does not treat an EOF from Read as an error to be reported.
CopyN copies n records (or until an error) from src to dst. It returns the number of records copied and the earliest error encountered while copying. On return, written == n if and only if err == nil.