forked from godotengine/godot
-
Notifications
You must be signed in to change notification settings - Fork 0
class_dictionary
reduz edited this page Feb 23, 2014
·
9 revisions
Dictionary type.
- void ** clear ** ( )
- bool ** empty ** ( )
- void ** erase ** ( var value )
- bool ** has ** ( var value )
- int ** hash ** ( )
- Array ** keys ** ( )
- int ** parse_json ** ( String json )
- int ** size ** ( )
- String ** to_json ** ( )
Dictionary type. Associative container which contains values referenced by unique keys. Dictionaries are always passed by reference.
- void ** clear ** ( ) \ Clear the dictionary, removing all key/value pairs.
- void ** erase ** ( var value ) \ Erase a dictionary key/value pair by key.