| 97 | // Visit sequence with no null mask |
| 98 | template <class VisitorFunc> |
| 99 | inline 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 |
| 107 | template <class VisitorFunc> |
no test coverage detected