Hi all, is there a compute API for searching a value index (and a set of values) in an Array? ex: ```python a = [1, 2, 2, 3, 4, 1] values= pa.array([1, 2, 1])
index = find_index(a, 1) # = [0, 5] indices = find_indices(a, values) # = [0, 1, 2, 5] ``` I am currently using `compute.is_in` and traversing the true indices of the result Bitmap. Is there a better way? Best -- Niranda Perera https://niranda.dev/ @n1r44 <https://twitter.com/N1R44>
