| 39 | } |
| 40 | |
| 41 | void Array::getAddress(libmexclass::proxy::method::Context& context) { |
| 42 | namespace mda = ::matlab::data; |
| 43 | |
| 44 | mda::ArrayFactory factory; |
| 45 | auto address = reinterpret_cast<uint64_t>(&arrowArray); |
| 46 | context.outputs[0] = factory.createScalar(address); |
| 47 | } |
| 48 | |
| 49 | } // namespace arrow::matlab::c::proxy |