MCPcopy Create free account
hub / github.com/cogentcore/core / Table

Method Table

tensor/table/splits.go:85–90  ·  view source on GitHub ↗

Table returns the table from the first split (should be same for all) returns nil if no splits yet

()

Source from the content-addressed store, hash-verified

83// Table returns the table from the first split (should be same for all)
84// returns nil if no splits yet
85func (spl *Splits) Table() *Table {
86 if len(spl.Splits) == 0 {
87 return nil
88 }
89 return spl.Splits[0].Table
90}
91
92// New adds a new split to the list for given table, and with associated
93// values, which are copied before saving into Values list, and any number of rows

Callers 7

AggByColumnNameMethod · 0.95
AggColumnFunction · 0.80
AggColumnTryFunction · 0.80
AggAllNumericColsFunction · 0.80
DescIndexFunction · 0.80
DescColumnFunction · 0.80
DescColumnTryFunction · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected