What is the function to assess how many entries are in it? That is, I should get a n = 5 somehow?
Also, it is possible to extract the first entry of each field and assign it to a different array?
That is, if I reiterate between 1 and n, can I do something like:
d = ["Field_1" [1], "Field_2" [a]]
A = d[1]
B = d[2]
Iβm afraid I donβt understand the second question. The first element of each array in your dict is accessed in the same way as computing the length above:
julia> first.(values(D))
2-element Vector{Any}:
1
"a"