Registry / serialization / apache-arrow-go-v14

apache-arrow-go-v14

JSON →
library14.0.2gogounverified

Package arrow provides a Go implementation of Apache Arrow, a cross-language development platform for in-memory data.

go get github.com/apache/arrow/go/v14
INSTALL
IMPORT
SIG · APACHE-ARROW-GO-V1
A
apache-arrow-go-v14
serializationgov14.0.2
harness data pending
Install & Compatibility
Where this runs

No compatibility data collected yet for this library.

Code
Verified usage

Verified import paths — ran on the pinned version, not inferred.

arrow
github.com/apache/arrow/go/v14

Build and print an Int64 array using Arrow.

package main import ( "fmt" "github.com/apache/arrow/go/v14/arrow" "github.com/apache/arrow/go/v14/arrow/array" "github.com/apache/arrow/go/v14/arrow/memory" ) func main() { pool := memory.NewGoAllocator() bld := array.NewInt64Builder(pool) defer bld.Release() bld.AppendValues([]int64{1, 2, 3}, nil) arr := bld.NewArray() defer arr.Release() fmt.Println(arr) }
Debug
Known issues

No known issues recorded.

Upgrade
Version history
14.0.2latest on pkg.go.dev
Audit
Dependencies

No dependency data recorded yet.

Agent activity
37 hits · last 30 days
node
30
OpenAI (training)
2
Meta
1
Resources
apache-arrow-go-v14 — go get apache-arrow-go-v14 · libregistry