In addition to this, CxxWrap.jl has some additional convenience classes to work with Julia arrays from C++, see https://github.com/JuliaInterop/CxxWrap.jl#working-with-arrays
Cheers, Bart On Sat, Oct 15, 2016 at 2:45 AM Isaiah Norton <[email protected]> wrote: > On Fri, Oct 14, 2016 at 2:28 PM, Kyle Kotowick <[email protected]> wrote: > > > After determining that an array was returned, how would you determine what > the inner type of the array is (i.e. the type of the objects it contains)? > > > `jl_array_eltype` > > > > And furthermore, if it returns an array of type "Any", would there be any > way to tell what the type is of any arbitrary element in that array? > > > `jl_typeof`, after retrieving the element (which will be boxed) > > > > Thanks! > > >
