Infer value type from a sequence of values
| 514 | |
| 515 | // Infer value type from a sequence of values |
| 516 | Status VisitIterable(PyObject* obj) { |
| 517 | return internal::VisitIterable(obj, [this](PyObject* value, bool* keep_going) { |
| 518 | return Visit(value, keep_going); |
| 519 | }); |
| 520 | } |
| 521 | |
| 522 | Status GetType(std::shared_ptr<DataType>* out) { |
| 523 | // TODO(wesm): handling forming unions |
no test coverage detected