[ Web Proxy ]
URL:
Viewing: https://arrow.apache.org/docs/python/generated/../api/../generated/pyarrow.compute.and_kleene.html [Back]  [Original]

pyarrow.compute.and_kleene — Apache Arrow v25.0.1
Back to top
Search the docs ...:

pyarrow.compute.and_kleene#

pyarrow.compute.and_kleene(x, y, /, *, memory_pool=None)#

Logical and boolean values (Kleene logic).

This function behaves as follows with nulls:

  • true and null = null

  • null and true = null

  • false and null = false

  • null and false = false

  • null and null = null

In other words, in this context a null value really means unknown, and an unknown value and false is always false. For a different null behavior, see function and.

Parameters:
xArray-like or scalar-like

Argument to compute function.

yArray-like or scalar-like

Argument to compute function.

memory_poolpyarrow.MemoryPool, optional

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


Web Proxy Viewer  |  New URL  |  Original Page