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

Method VisitSet

python/pyarrow/src/arrow/python/inference.cc:670–677  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

668 }
669
670 Status VisitSet(PyObject* obj, bool* keep_going /* unused */) {
671 if (!list_inferrer_) {
672 list_inferrer_.reset(
673 new TypeInferrer(pandas_null_sentinels_, validate_interval_, make_unions_));
674 }
675 ++list_count_;
676 return list_inferrer_->VisitIterable(obj);
677 }
678
679 Status VisitNdarray(PyObject* obj, bool* keep_going) {
680 PyArray_Descr* dtype = PyArray_DESCR(reinterpret_cast<PyArrayObject*>(obj));

Callers

nothing calls this directly

Calls 2

VisitIterableMethod · 0.80
resetMethod · 0.45

Tested by

no test coverage detected