MCPcopy Create free account
hub / github.com/datasweet/datatable / Column

Interface Column

column.go:153–160  ·  view source on GitHub ↗

Column describes a column in our datatable

Source from the content-addressed store, hash-verified

151
152// Column describes a column in our datatable
153type Column interface {
154 Name() string
155 Type() ColumnType
156 UnderlyingType() reflect.Type
157 IsVisible() bool
158 IsComputed() bool
159 //Clone(includeValues bool) Column
160}
161
162type column struct {
163 name string

Callers 24

ToMapMethod · 0.65
ToTableMethod · 0.65
ToSchemaMethod · 0.65
ColumnsMethod · 0.65
HiddenColumnsMethod · 0.65
ColumnMethod · 0.65
ColumnIndexMethod · 0.65
RowsMethod · 0.65
UnderlyingTypeMethod · 0.65
PrintMethod · 0.65
ToSchemaMethod · 0.65
ToMapMethod · 0.65

Implementers 1

columncolumn.go

Calls

no outgoing calls

Tested by

no test coverage detected