Versions in this module Expand all Collapse all v0 v0.0.2 Nov 2, 2025 Changes in this version + const Version v0.0.1 Nov 1, 2025 Changes in this version + type Array struct + func FromMap(data map[string][]any) (*Array, error) + func New(nrows int) *Array + func (a *Array) AddColumn(name string, data []any, dtype DType) error + func (a *Array) At(row int, col string) (any, error) + func (a *Array) ColumnNames() []string + func (a *Array) Columns() iter.Seq[*Column] + func (a *Array) GetColumn(name string) *Column + func (a *Array) IsView() bool + func (a *Array) Row(row int) (map[string]any, error) + func (a *Array) Select(colNames ...string) (*Array, error) + func (a *Array) Shape() (int, int) + func (a *Array) Slice(start, end int) (*Array, error) + type Column struct + DType DType + Data []any + Name string + type ColumnNode struct + Column *Column + Next *ColumnNode + type DType int + const DTypeAny + const DTypeBool + const DTypeFloat64 + const DTypeInt64 + const DTypeString + func (d DType) String() string + type ViewMetadata struct