pyarrow.compute.SetLookupOptions#

classpyarrow.compute.SetLookupOptions(value_set,*,skip_nulls=False)#

Bases:_SetLookupOptions

Options for theis_in andindex_in functions.

Parameters:
value_setArray

Set of values to look for in the input.

skip_nullsbool, defaultFalse

If False, nulls in the input are matched in the value_set justlike regular values.If True, nulls in the input always fail matching.

__init__(self,value_set,*,skip_nulls=False)#

Methods

__init__(self, value_set, *[, skip_nulls])

deserialize(buf)

Deserialize options for a function.

serialize(self)

staticdeserialize(buf)#

Deserialize options for a function.

Parameters:
bufBuffer

The buffer containing the data to deserialize.

serialize(self)#