(rr *IteratorResult)
| 205 | } |
| 206 | |
| 207 | func (r *IteratorResult) Append(rr *IteratorResult) { |
| 208 | if len(rr.Entries) > 0 { |
| 209 | r.Entries = append(r.Entries, rr.Entries...) |
| 210 | } |
| 211 | if len(rr.OtherEntries) > 0 { |
| 212 | r.OtherEntries = append(r.OtherEntries, rr.OtherEntries...) |
| 213 | } |
| 214 | } |
| 215 | |
| 216 | func (r *IteratorResult) AppendValue(k string, v pq.Value) { |
| 217 | r.Entries = append(r.Entries, struct { |
no outgoing calls