Data structures functions
CreateBoolDictionary
Declaration
BoolDictionary CreateBoolDictionary()
Description
Creates a new BoolDictionary.
Supported Runtime Versions
3.0, 4.0, 5.0
Parameters
The function has no parameters.
Return Value
A new BoolDictionary.
CreateDoubleDictionary
Declaration
DoubleDictionary CreateDoubleDictionary()
Description
Creates a new DoubleDictionary.
Supported Runtime Versions
3.0, 4.0, 5.0
Parameters
The function has no parameters.
Return Value
A new DoubleDictionary.
CreateIntDictionary
Declaration
IntDictionary CreateIntDictionary()
Description
Creates a new IntDictionary.
Supported Runtime Versions
3.0, 4.0, 5.0
Parameters
The function has no parameters.
Return Value
A new IntDictionary.
CreateStringDictionary
Declaration
StringDictionary CreateStringDictionary()
Description
Creates a new StringDictionary.
Supported Runtime Versions
3.0, 4.0, 5.0
Parameters
The function has no parameters.
Return Value
A new StringDictionary.
Keys
Declaration
StringList Keys(IntDictionary dictionary)
Description
Returns the keys of an IntDictionary.
Supported Runtime Versions
3.0, 4.0, 5.0
Parameters
|
Description |
---|---|
dictionary
|
The IntDictionary to return the keys of. |
Return Value
The keys of the IntDictionary.
Keys
Declaration
StringList Keys(StringDictionary dictionary)
Description
Returns the keys of a StringDictionary.
Supported Runtime Versions
3.0, 4.0, 5.0
Parameters
|
Description |
---|---|
dictionary
|
The StringDictionary to return the keys of. |
Return Value
The keys of the StringDictionary.
Keys
Declaration
StringList Keys(DoubleDictionary dictionary)
Description
Returns the keys of a DoubleDictionary.
Supported Runtime Versions
3.0, 4.0, 5.0
Parameters
|
Description |
---|---|
dictionary
|
The DoubleDictionary to return the keys of. |
Return Value
The keys of the DoubleDictionary.
Keys
Declaration
StringList Keys(BoolDictionary dictionary)
Description
Returns the keys of a BoolDictionary.
Supported Runtime Versions
3.0, 4.0, 5.0
Parameters
|
Description |
---|---|
dictionary
|
The BoolDictionary to return the keys of. |
Return Value
The keys of the BoolDictionary.