File tree Expand file tree Collapse file tree 1 file changed +3
-4
lines changed Expand file tree Collapse file tree 1 file changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -785,18 +785,17 @@ list, used for small mappings with a few entries where the overhead
785
785
of accessing a hash table is higher than that of a linear search of a
786
786
linked list.
787
787
788
- Base.ImmutableDict(key=>value, key=>value, ...)
789
788
790
- `Base.ImmutableDict(key=>value, key=>value , ...)` constructs a linked
789
+ `Base.ImmutableDict(key1=>value1, key2=>value2 , ...)` constructs a linked
791
790
list; the first argument sets the type of the keys and values. Keys
792
791
are compared with `isequal`.
793
792
794
793
`Base.ImmutableDict{K,V}()` constructs an empty list with keys of type
795
794
K and values of type V.
796
795
797
- Base.ImmutableDict(imdict, key=>value, key=>value , ...)
796
+ Base.ImmutableDict(imdict, key1=>value1, key2=>value2 , ...)
798
797
799
- `Base.ImmutableDict(imdict, key=>value, key=>value , ...)` constructs a
798
+ `Base.ImmutableDict(imdict, key1=>value1, key2=>value2 , ...)` constructs a
800
799
new `ImmutableDict` from an existing `ImmutableDict` and additional KV
801
800
pairs, returning a new list. The original `ImmutableDict` becomes the
802
801
tail of the new list.
You can’t perform that action at this time.
0 commit comments