pyarrow.compute.ascii_is_space#

pyarrow.compute.ascii_is_space(strings, /, *, memory_pool=None)#

Classify strings as ASCII whitespace.

For each string in strings, emit true iff the string is non-empty and consists only of whitespace ASCII characters. Null strings emit null.

Parameters:
stringsArray-like or scalar-like

Argument to compute function.

memory_poolpyarrow.MemoryPool, optional

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