normalColumns returns the list of columns for -onormal
()
| 151 | |
| 152 | // normalColumns returns the list of columns for -onormal |
| 153 | func (instance *Instance) normalColumns() columnList { |
| 154 | columnList := columnList{ |
| 155 | 0: new(name), |
| 156 | 1: new(kind), |
| 157 | 2: new(version), |
| 158 | 3: new(replacement), |
| 159 | 4: new(removed), |
| 160 | 5: new(deprecated), |
| 161 | 6: new(replacementAvailable), |
| 162 | } |
| 163 | return columnList |
| 164 | } |
| 165 | |
| 166 | // wideColumns returns the list of columns for -owide |
| 167 | func (instance *Instance) wideColumns() columnList { |