pyarrow.compute.string_is_ascii¶
- 
pyarrow.compute.string_is_ascii(strings, *, memory_pool=None)¶
- Classify strings as ASCII. - For each string in strings, emit true iff the string consists only of ASCII characters. Null strings emit null. - Parameters
- strings (Array-like or scalar-like) – Argument to compute function 
- memory_pool (pyarrow.MemoryPool, optional) – If not passed, will allocate memory from the default memory pool. 
 
 
