pyarrow.compute.index_in_meta_binary#

pyarrow.compute.index_in_meta_binary(values, value_set, /, *, memory_pool=None)#

Return index of each element in a set of values.

For each element in values, return its index in the value_set, or null if it is not found there.

Parameters:
valuesArray-like or scalar-like

Argument to compute function.

value_setArray-like or scalar-like

Argument to compute function.

memory_poolpyarrow.MemoryPool, optional

If not passed, will allocate memory from the default memory pool.