merge
is a useful function. Why there is no documentation found for it in the julia command line.
Documentation is here : Collections and Data Structures · The Julia Language
julia> a
Dict{Int64, Int64} with 3 entries:
2 => 4
3 => 6
1 => 2
julia> b
Dict{Int64, Int64} with 4 entries:
4 => 10
2 => 8
3 => 9
1 => 7
julia> c = merge(a,b)
Dict{Any, Any} with 4 entries:
4 => [10]
2 => [4, 8]
3 => [6, 9]
1 => [2, 7]
help?> merge
search: merge merge! mergewith mergewith! MergeSort
No documentation found.
merge is a Function.
# 1 method for generic function "merge" from Main:
[1] merge(d...)
@ REPL[6]:1