(k string)
| 228 | } |
| 229 | |
| 230 | func (r *IteratorResult) OtherValueFromKey(k string) interface{} { |
| 231 | for _, e := range r.OtherEntries { |
| 232 | if e.Key == k { |
| 233 | return e.Value |
| 234 | } |
| 235 | } |
| 236 | return nil |
| 237 | } |
| 238 | |
| 239 | // ToMap converts the unstructured list of data into a map containing an entry |
| 240 | // for each column, and the lists of values. The order of columns is |