Add Dictionary.merge()

This commit is contained in:
kobewi
2022-04-04 18:46:55 +02:00
parent 3aa83a0235
commit a0915e6dee
4 changed files with 18 additions and 0 deletions

View File

@@ -291,6 +291,14 @@
Returns the list of keys in the [Dictionary].
</description>
</method>
<method name="merge">
<return type="void" />
<argument index="0" name="dictionary" type="Dictionary" />
<argument index="1" name="overwrite" type="bool" default="false" />
<description>
Adds elements from [code]dictionary[/code] to this [Dictionary]. By default, duplicate keys will not be copied over, unless [code]overwrite[/code] is [code]true[/code].
</description>
</method>
<method name="size" qualifiers="const">
<return type="int" />
<description>