Is there any nice way to make such Dict type stable (where N might vary in different dict entries)?
Perhaps annotating when accessing some field (which I always know the size)
Or have a dict of Tuple(Vector{Float64},Vector{UInt32})
the second vector could keep count of dim sizes so that I can use ind2sub/sub2ind
. This looks very messy and possibly inefficient…
thanks