Skip to content

Commit 2cb02a1

Browse files
committed
collections.md: add ImmutableDict to list of dictionary types
1 parent fc456bd commit 2cb02a1

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

doc/src/base/collections.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -186,6 +186,8 @@ thus may be garbage collected even when referenced in a hash table.
186186
Like `Dict` it uses `hash` for hashing and `isequal` for equality, unlike `Dict` it does
187187
not convert keys on insertion.
188188

189+
[`ImmutableDict`](@ref Base.ImmutableDict) is a linked list implementation.
190+
189191
[`Dict`](@ref)s can be created by passing pair objects constructed with `=>` to a [`Dict`](@ref)
190192
constructor: `Dict("A"=>1, "B"=>2)`. This call will attempt to infer type information from the
191193
keys and values (i.e. this example creates a `Dict{String, Int64}`). To explicitly specify types

0 commit comments

Comments
 (0)