dictionary.rl
Class Entry
Fields
Bool occupiedInt hashKeyType keyValueType value
Class Dict
Fields
Methods
Function:
init()Function:
insert(KeyType key, ValueType value) -> BoolFunction:
get(KeyType key) -> ValueTypeFunction:
contains(KeyType key) -> BoolFunction:
remove(KeyType key) -> BoolFunction:
keys() -> Vector<KeyType>Function:
values() -> Vector<ValueType>Function:
empty() -> Bool
returns true if the
size of the dictionary is equal
to zero
Function:
size() -> Int
returns true if the
size of the dictionary is equal
to zero
Function:
clear()
erases all the elements
of the dictionary
Function:
drop()