MCPcopy Create free account
hub / github.com/apache/arrow / VisitSequence

Function VisitSequence

python/pyarrow/src/arrow/python/iterators.h:99–104  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

97// Visit sequence with no null mask
98template <class VisitorFunc>
99inline Status VisitSequence(PyObject* obj, int64_t offset, VisitorFunc&& func) {
100 return VisitSequenceGeneric(
101 obj, offset, [&func](PyObject* value, int64_t i /* unused */, bool* keep_going) {
102 return func(value, keep_going);
103 });
104}
105
106/// Visit sequence with null mask
107template <class VisitorFunc>

Callers 3

VisitIterableFunction · 0.85
VisitSequenceMethod · 0.85
ExtendMethod · 0.85

Calls 2

VisitSequenceGenericFunction · 0.85
funcFunction · 0.50

Tested by

no test coverage detected