| 202 | } |
| 203 | |
| 204 | arrow::Result<::matlab::data::StructArray> wrap_and_manage( |
| 205 | const std::shared_ptr<arrow::Array>& array) { |
| 206 | ARROW_ASSIGN_OR_RAISE(auto proxy, wrap(array)); |
| 207 | return manage_proxy(proxy, array->type_id()); |
| 208 | } |
| 209 | |
| 210 | arrow::Result<std::shared_ptr<arrow::matlab::type::proxy::Type>> wrap( |
| 211 | const std::shared_ptr<arrow::DataType>& datatype) { |
no test coverage detected