Column describes a column in our datatable
| 151 | |
| 152 | // Column describes a column in our datatable |
| 153 | type 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 | |
| 162 | type column struct { |
| 163 | name string |
no outgoing calls
no test coverage detected