Open
Description
I think it would be useful to have a documented way to access the underlying Dict
of a DefaultDict
. The following seems to rely on internals:
julia> dd
DefaultDict{Any,Array{Int64,1},DataType} with 3 entries:
0 => [3, 6, 9]
2 => [2, 5, 8]
1 => [1, 4, 7, 10]
julia> dd.d.d
Dict{Any,Array{Int64,1}} with 3 entries:
0 => [3, 6, 9]
2 => [2, 5, 8]
1 => [1, 4, 7, 10]
Activity