ReversePick is like Pick but it builds the vector from the elements that are not in the index maintaining the element order of vec.
(vec Any, index []uint32)
| 63 | // ReversePick is like Pick but it builds the vector from the elements |
| 64 | // that are not in the index maintaining the element order of vec. |
| 65 | func ReversePick(vec Any, index []uint32) Any { |
| 66 | return Pick(vec, bitvec.ReverseIndex(index, vec.Len())) |
| 67 | } |
no test coverage detected