Document that Dictionary is always passed as reference
See #38792.
(cherry picked from commit 675fea1648
)
This commit is contained in:
parent
4779d289d5
commit
8ebcdeb3d7
|
@ -20,7 +20,7 @@
|
||||||
var array2 = [3, "Four"]
|
var array2 = [3, "Four"]
|
||||||
print(array1 + array2) # ["One", 2, 3, "Four"]
|
print(array1 + array2) # ["One", 2, 3, "Four"]
|
||||||
[/codeblock]
|
[/codeblock]
|
||||||
Arrays are always passed by reference.
|
[b]Note:[/b] Arrays are always passed by reference. To get a copy of an array which can be modified independently of the original array, use [method duplicate].
|
||||||
</description>
|
</description>
|
||||||
<tutorials>
|
<tutorials>
|
||||||
</tutorials>
|
</tutorials>
|
||||||
|
|
|
@ -7,6 +7,7 @@
|
||||||
Dictionary type. Associative container which contains values referenced by unique keys. Dictionaries are composed of pairs of keys (which must be unique) and values. Dictionaries will preserve the insertion order when adding elements, even though this may not be reflected when printing the dictionary. In other programming languages, this data structure is sometimes referred to as an hash map or associative array.
|
Dictionary type. Associative container which contains values referenced by unique keys. Dictionaries are composed of pairs of keys (which must be unique) and values. Dictionaries will preserve the insertion order when adding elements, even though this may not be reflected when printing the dictionary. In other programming languages, this data structure is sometimes referred to as an hash map or associative array.
|
||||||
You can define a dictionary by placing a comma-separated list of [code]key: value[/code] pairs in curly braces [code]{}[/code].
|
You can define a dictionary by placing a comma-separated list of [code]key: value[/code] pairs in curly braces [code]{}[/code].
|
||||||
Erasing elements while iterating over them [b]is not supported[/b] and will result in undefined behavior.
|
Erasing elements while iterating over them [b]is not supported[/b] and will result in undefined behavior.
|
||||||
|
[b]Note:[/b] Dictionaries are always passed by reference. To get a copy of a dictionary which can be modified independently of the original dictionary, use [method duplicate].
|
||||||
Creating a dictionary:
|
Creating a dictionary:
|
||||||
[codeblock]
|
[codeblock]
|
||||||
var my_dir = {} # Creates an empty dictionary.
|
var my_dir = {} # Creates an empty dictionary.
|
||||||
|
|
Loading…
Reference in New Issue