Hi .. Is there a compute function I can use to filter an array with list entries based on the contents of the list?
For eg. arr = pa.array([1,2],[3],[3,4,5]). I want to run a computer function which return true if the entries have 3 or 4. Expected output is: pa.array(False, True, True). The closest I could find was map lookup which expects the entries to be map. Thanks
