(k string, v interface{})
| 221 | } |
| 222 | |
| 223 | func (r *IteratorResult) AppendOtherValue(k string, v interface{}) { |
| 224 | r.OtherEntries = append(r.OtherEntries, struct { |
| 225 | Key string |
| 226 | Value interface{} |
| 227 | }{k, v}) |
| 228 | } |
| 229 | |
| 230 | func (r *IteratorResult) OtherValueFromKey(k string) interface{} { |
| 231 | for _, e := range r.OtherEntries { |
no outgoing calls