Dictionary - Create
This task initializes a variable or parameter of type Dictionary as an empty Dictionary.
Parameter | Type | Description | Required |
---|---|---|---|
Dictionary | Dictionary | The resulting Dictionary. | Yes |
Dictionary - Get
This task gets an item in the dictionary with a specified key.
Parameter | Type | Description | Required |
---|---|---|---|
Result | Any | The item that was retrieved. | Yes |
Dictionary | Any extends Dictionary | The dictionary that an item will be retrieved from. | Yes |
Key | String | The key of the item in the dictionary. | Yes |
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 | Required |
---|---|---|---|
Dictionary | Any extends Dictionary | The dictionary to be checked for a specified key. | Yes |
Key | String | The key that will be checked. | Yes |
Result | Boolean | The result indicating whether or not an entry with the specified key was found. | Yes |
Dictionary - Keys
This task returns a list containing all keys in the dictionary.
Parameter | Type | Description | Required |
---|---|---|---|
Result | List | A list of all keys in the dictionary. | Yes |
Dictionary | Any extends Dictionary | The source dictionary. | Yes |
Dictionary - Values
This task returns a list containing all values in the dictionary.
Parameter | Type | Description | Required |
---|---|---|---|
Result | List | A list of all values in the dictionary. | Yes |
Dictionary | Any extends Dictionary | The source dictionary. | Yes |
Dictionary - Put
This task puts a new entry in the dictionary with the specified key.
Parameter | Type | Description | Required |
---|---|---|---|
Dictionary | Any extends Dictionary | The dictionary that the new entry will be added to. | Yes |
Key | String | The key of the new entry that will be added to the dictionary. | Yes |
Entry | Any | The value of the new entry that will be added to the dictionary. | Yes |
Dictionary - Remove
This task removes an entry from the dictionary with the specified key.
Parameter | Type | Description | Required |
---|---|---|---|
Dictionary | Any extends Dictionary | The dictionary that the entry will be removed from. | Yes |
Key | string | The key of the entry to remove from the dictionary. | Yes |
Dictionary - Size
This task returns the number of entries in the dictionary.
Parameter | Type | Description | Required |
---|---|---|---|
Result | Long | The number of entries in the dictionary. | Yes |
Dictionary | Any extends Dictionary | The dictionary that the number of entries will be counted from. | Yes |
List - Create
This task initializes a variable or parameter of type List as an empty List.
Parameter | Type | Description | Required |
---|---|---|---|
List | List | The resulting list. | Yes |
List - Get
This task gets an item in the list at a specified index.
Parameter | Type | Description | Required |
---|---|---|---|
Result | Any | Output. | Yes |
List | Any extends list | The list containing the item. | Yes |
Index | Long | The index of the item to be retrieved. | Yes |
List - Add
This task adds an item to the list.
Parameter | Type | Description | Required |
---|---|---|---|
List | Any extends list | The list to be added to. | Yes |
Item | Any | The item to be added to the list. | Yes |
List - Remove
This task removes an item from the list at a specified index
Parameter | Type | Description | Required |
---|---|---|---|
List | Any extends list | The list that an item will be removed from. | Yes |
Index | Any | The index of the item to be removed. | Yes |
List - First
This task gets the first item in the list.
Parameter | Type | Description | Required |
---|---|---|---|
List | Any extends list | The list that the first item will be retrieved from. | Yes |
Result | Any | The first item in the list. | Yes |
List - Last
This task gets the first item in the list.
Parameter | Type | Description | Required |
---|---|---|---|
List | Any extends list | The list that the last item will be retrieved from. | Yes |
Result | Any | The last item in the list. | Yes |
List - Size
This task gets the number of items in the list.
Parameter | Type | Description | Required |
---|---|---|---|
Result | Long | The size of the list. | Yes |
List | Any | The list that the number of items will be counted from. | Yes |
Comments
0 comments
Please sign in to leave a comment.