diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2020-11-10 14:16:20 +0100 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2020-11-10 15:00:50 +0100 |
commit | 64e893deac24ef7c144ba7a6915c417bbd6a4816 (patch) | |
tree | 5031279e0aa1ee342b195ec796e214d60a45ca84 /doc/classes/Dictionary.xml | |
parent | 34cad0d020c58d87245befe10ad816fa73432437 (diff) |
doc: Sync classref to add operators after #43419
Diffstat (limited to 'doc/classes/Dictionary.xml')
-rw-r--r-- | doc/classes/Dictionary.xml | 28 |
1 files changed, 26 insertions, 2 deletions
diff --git a/doc/classes/Dictionary.xml b/doc/classes/Dictionary.xml index a7a3632fef..dc38fdf0e8 100644 --- a/doc/classes/Dictionary.xml +++ b/doc/classes/Dictionary.xml @@ -171,14 +171,14 @@ <link title="OS Test Demo">https://godotengine.org/asset-library/asset/677</link> </tutorials> <methods> - <method name="Dictionary"> + <method name="Dictionary" qualifiers="constructor"> <return type="Dictionary"> </return> <description> Constructs an empty [Dictionary]. </description> </method> - <method name="Dictionary"> + <method name="Dictionary" qualifiers="constructor"> <return type="Dictionary"> </return> <argument index="0" name="from" type="Dictionary"> @@ -294,6 +294,30 @@ Returns the list of keys in the [Dictionary]. </description> </method> + <method name="operator !=" qualifiers="operator"> + <return type="bool"> + </return> + <argument index="0" name="right" type="Dictionary"> + </argument> + <description> + </description> + </method> + <method name="operator ==" qualifiers="operator"> + <return type="bool"> + </return> + <argument index="0" name="right" type="Dictionary"> + </argument> + <description> + </description> + </method> + <method name="operator []" qualifiers="operator"> + <return type="Variant"> + </return> + <argument index="0" name="key" type="Variant"> + </argument> + <description> + </description> + </method> <method name="size"> <return type="int"> </return> |