diff options
| author | Juan Linietsky | 2017-09-12 17:42:36 -0300 |
|---|---|---|
| committer | Juan Linietsky | 2017-09-12 17:45:41 -0300 |
| commit | 4f929a0fdfae24b1ca5acf0b732219119090ee43 (patch) | |
| tree | 730471182cae00f2e47c7430db441d057383d29b /doc/classes/Dictionary.xml | |
| parent | 175777596ec3521731665dd750fd7087793b10fc (diff) | |
| download | godot-4f929a0fdfae24b1ca5acf0b732219119090ee43.tar.gz godot-4f929a0fdfae24b1ca5acf0b732219119090ee43.tar.zst godot-4f929a0fdfae24b1ca5acf0b732219119090ee43.zip | |
Changed the doc class generation to individual files per class. It is also possible to save module files in module directories and the build system will
recognize them.
Diffstat (limited to 'doc/classes/Dictionary.xml')
| -rw-r--r-- | doc/classes/Dictionary.xml | 82 |
1 files changed, 82 insertions, 0 deletions
diff --git a/doc/classes/Dictionary.xml b/doc/classes/Dictionary.xml new file mode 100644 index 000000000..447c0d7ed --- /dev/null +++ b/doc/classes/Dictionary.xml @@ -0,0 +1,82 @@ +<?xml version="1.0" encoding="UTF-8" ?> +<class name="Dictionary" category="Built-In Types" version="3.0.alpha.custom_build"> + <brief_description> + Dictionary type. + </brief_description> + <description> + Dictionary type. Associative container which contains values referenced by unique keys. Dictionaries are always passed by reference. + </description> + <tutorials> + </tutorials> + <demos> + </demos> + <methods> + <method name="clear"> + <description> + Clear the dictionary, removing all key/value pairs. + </description> + </method> + <method name="empty"> + <return type="bool"> + </return> + <description> + Return true if the dictionary is empty. + </description> + </method> + <method name="erase"> + <argument index="0" name="key" type="var"> + </argument> + <description> + Erase a dictionary key/value pair by key. + </description> + </method> + <method name="has"> + <return type="bool"> + </return> + <argument index="0" name="key" type="var"> + </argument> + <description> + Return true if the dictionary has a given key. + </description> + </method> + <method name="has_all"> + <return type="bool"> + </return> + <argument index="0" name="keys" type="Array"> + </argument> + <description> + Return true if the dictionary has all of the keys in the given array. + </description> + </method> + <method name="hash"> + <return type="int"> + </return> + <description> + Return a hashed integer value representing the dictionary contents. + </description> + </method> + <method name="keys"> + <return type="Array"> + </return> + <description> + Return the list of keys in the [Dictionary]. + </description> + </method> + <method name="size"> + <return type="int"> + </return> + <description> + Return the size of the dictionary (in pairs). + </description> + </method> + <method name="values"> + <return type="Array"> + </return> + <description> + Return the list of values in the [Dictionary]. + </description> + </method> + </methods> + <constants> + </constants> +</class> |
