(index []uint32, vec Any)
| 23 | } |
| 24 | |
| 25 | func (c *Combiner) Add(index []uint32, vec Any) { |
| 26 | if len(index) == 0 { |
| 27 | return |
| 28 | } |
| 29 | c.vecs = append(c.vecs, vec) |
| 30 | c.indexes = append(c.indexes, index) |
| 31 | } |
| 32 | |
| 33 | func (c *Combiner) Result() Any { |
| 34 | if len(c.vecs) == 0 { |
no outgoing calls
no test coverage detected