Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
Functions ¶
This section is empty.
Types ¶
type Reader ¶
type Reader struct {
// contains filtered or unexported fields
}
Reader is a zio.Reader for the Arrow IPC stream format.
type WriteCloser ¶ added in v1.8.0
type Writer ¶
type Writer struct { NewWriterFunc func(io.Writer, *arrow.Schema) (WriteCloser, error) // contains filtered or unexported fields }
Writer is a zio.Writer for the Arrow IPC stream format. Given Zed values with appropriately named types (see the newArrowDataType implementation), it can write all Arrow types except dictionaries and sparse unions. (Although dictionaries are not part of the Zed data model, write support could be added using a named type.)
func NewWriter ¶
func NewWriter(w io.WriteCloser) *Writer
Click to show internal directories.
Click to hide internal directories.