Collections

Dictionary - Create

This task initializes a variable or parameter of type Dictionary as an empty Dictionary.

Parameter Type Description
Dictionary Dictionary The resulting Dictionary.

Dictionary - Get

This task gets an item in the dictionary with a specified key.

Parameter Type Description
Result Any The item that was retrieved..
Dictionary Any extends Dictionary The dictionary that an item will be retrieved from.
Key String The key of the item in the dictionary.

Dictionary - Has Key

This task returns a boolean indicating whether or not an entry with the specified key exists in the dictionary.

Parameter Type Description
Dictionary Any extends Dictionary The dictionary that will be checked for a specified key.
Key String The key that will be checked.
Result Boolean The result indicating whether or not an entry with the specified key was found.

Dictionary - Keys

This task returns a list containing all keys in the dictionary.

Parameter Type Description
Result List A list of all keys in the dictionary.
Dictionary Any extends Dictionary The source dictionary.

Dictionary - Values

This task returns a list containing all values in the dictionary.

Parameter Type Description
Result List A list of all values in the dictionary.
Dictionary Any extends Dictionary The source dictionary.

Dictionary - Put

This task puts a new entry in the dictionary with the specified key.

Parameter Type Description
Dictionary Any extends Dictionary The dictionary that the new entry will be added to.
Key String The key of the new entry that will be added to the dictionary.
Entry Any The value of the new entry that will be added to the dictionary.

Dictionary - Remove

This task removes an entry from the dictionary with the specified key.

Parameter Type Description
Dictionary Any extends Dictionary The dictionary that the entry will be removed from.
key string The key of the entry to remove from the dictionary.

Dictionary - Size

This task returns the number of entries in the dictionary.

Parameter Type Description
Result Long The number of entries in the dictionary.
Dictionary Any extends Dictionary The dictionary that the number of entries will be counted from.

List - Create

This task initializes a variable or parameter of type List as an empty List.

Parameter Type Description
List List The resulting list.

List - Get

This task gets an item in the list at a specified index.

Parameter Type Description
Result Any Output.
List Any extends list The list containing the item.
Index Long The index of the item to be retrieved.

List - Add

This task adds an item to the list.

Parameter Type Description
List Any extends list The list to be added to.
Item Any The item to be added to the list.

List - Remove

This task removes an item from the list at a specified index

Parameter Type Description
List Any extends list The list that an item will be removed from.
Index Any The index of the item to be removed.

List - First

This task gets the first item in the list.

Parameter Type Description
List Any extends list The list that the first item will be retrieved from.
Result Any The first item in the list.

List - Last

This task gets the first item in the list.

Parameter Type Description
List Any extends list The list that the last item will be retrieved from.
Result Any The last item in the list.

List - Size

This task gets the number of items in the list.

Parameter Type Description
Result Long The size of the list.
List Any The list that the number of items will be counted from.