Let's say I have the following:
struct Foo{T<:AbstractVector}
x::T
end
Foo(n::Integer) = Foo(zeros(n))
struct Bar{T<:Foo}
foos::Matrix{T}
end
Bar(foo, m, n) = Bar(StructArray(foo() for _ in 1:m, _ in 1:n; unwrap = t -> t <: Foo))
Currently this will make it so that I get bar.foos.x[i, j][t]
. I am wondering how I can get it to be bar.foos.x[i, j, t]
(i.e. a dense array with three dimensions instead of a matrix of vectors).
Last updated: Nov 06 2024 at 04:40 UTC