| 120 | } |
| 121 | |
| 122 | inline pybind11::list FieldDataVectorToPyList(const std::vector<FieldData>& v) { |
| 123 | pybind11::list l; |
| 124 | for (auto& f : v) l.append(FieldDataToPyObj(f)); |
| 125 | return l; |
| 126 | } |
| 127 | |
| 128 | inline pybind11::dict FieldDataMapToPyDict(const std::map<std::string, FieldData>& data) { |
| 129 | pybind11::dict d; |
no test coverage detected