MCPcopy Create free account
hub / github.com/apache/arrow / getValues

Method getValues

matlab/src/cpp/arrow/matlab/array/proxy/list_array.cc:73–83  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

71}
72
73void ListArray::getValues(libmexclass::proxy::method::Context& context) {
74 namespace mda = ::matlab::data;
75 using libmexclass::proxy::ProxyManager;
76
77 auto list_array = std::static_pointer_cast<arrow::ListArray>(array);
78 auto value_array = list_array->values();
79
80 MATLAB_ASSIGN_OR_ERROR_WITH_CONTEXT(context.outputs[0],
81 arrow::matlab::proxy::wrap_and_manage(value_array),
82 context, error::UNKNOWN_PROXY_FOR_ARRAY_TYPE);
83}
84
85void ListArray::getOffsets(libmexclass::proxy::method::Context& context) {
86 namespace mda = ::matlab::data;

Callers

nothing calls this directly

Calls 2

wrap_and_manageFunction · 0.85
valuesMethod · 0.45

Tested by

no test coverage detected