Hello !
I have a question about a behavior I don’t understand when I try to make a dictionary composed of NamedTuple
. Each of these NamedTuple
corresponds to a parameter set of a simulation.
For example:
julia> d = Dict( "param1" => (a = 1, b = 2))
Dict{String, @NamedTuple{a::Int64, b::Int64}} with 1 entry:
"param1" => (a = 1, b = 2)
julia> d.keys
16-element Vector{String}:
"param1"
#undef
#undef
#undef
#undef
#undef
#undef
#undef
#undef
#undef
#undef
#undef
#undef
#undef
#undef
#undef
I specify that I’m using Julia 1.10.2
Thanks !
fdekerm