Hi
I am working on a project where I am passing large data sets between Julia and C++.
It would be nice if I did not have to collect(...) my sliced/viewed data into arrays before sending them to C++. Maybe something like:
function test(jlcxx::GenericMatrix<float, 2> mat) {
int rows = mat.size(0);
int cols = mat.size(1);
for (...) {
float cpp_tmp = mat.at(i, j);
}
}