(tab Table, name string)
| 23 | } |
| 24 | |
| 25 | func TableColumnIndex(tab Table, name string) int { |
| 26 | for i := range tab.NumColumns() { |
| 27 | if tab.ColumnName(i) == name { |
| 28 | return i |
| 29 | } |
| 30 | } |
| 31 | return -1 |
| 32 | } |
| 33 | |
| 34 | // TableXYer is an interface for providing XY access to Table data |
| 35 | type TableXYer struct { |
nothing calls this directly
no test coverage detected