We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fc456bd commit 2cb02a1Copy full SHA for 2cb02a1
doc/src/base/collections.md
@@ -186,6 +186,8 @@ thus may be garbage collected even when referenced in a hash table.
186
Like `Dict` it uses `hash` for hashing and `isequal` for equality, unlike `Dict` it does
187
not convert keys on insertion.
188
189
+ [`ImmutableDict`](@ref Base.ImmutableDict) is a linked list implementation.
190
+
191
[`Dict`](@ref)s can be created by passing pair objects constructed with `=>` to a [`Dict`](@ref)
192
constructor: `Dict("A"=>1, "B"=>2)`. This call will attempt to infer type information from the
193
keys and values (i.e. this example creates a `Dict{String, Int64}`). To explicitly specify types
0 commit comments