| 48 | } |
| 49 | |
| 50 | void Field::getType(libmexclass::proxy::method::Context& context) { |
| 51 | const auto& datatype = field->type(); |
| 52 | MATLAB_ASSIGN_OR_ERROR_WITH_CONTEXT(context.outputs[0], |
| 53 | arrow::matlab::proxy::wrap_and_manage(datatype), |
| 54 | context, error::FIELD_FAILED_TO_CREATE_TYPE_PROXY); |
| 55 | } |
| 56 | |
| 57 | libmexclass::proxy::MakeResult Field::make( |
| 58 | const libmexclass::proxy::FunctionArguments& constructor_arguments) { |
no test coverage detected