(k string, v pq.Value)
| 214 | } |
| 215 | |
| 216 | func (r *IteratorResult) AppendValue(k string, v pq.Value) { |
| 217 | r.Entries = append(r.Entries, struct { |
| 218 | Key string |
| 219 | Value pq.Value |
| 220 | }{k, v}) |
| 221 | } |
| 222 | |
| 223 | func (r *IteratorResult) AppendOtherValue(k string, v interface{}) { |
| 224 | r.OtherEntries = append(r.OtherEntries, struct { |
no outgoing calls