Enum ListAction
Actions executed on list variables.
Namespace: RuriLib
Assembly: RuriLib.dll
Syntax
public enum ListAction
Fields
Name | Description |
---|---|
Add | Adds an element to a list variable. |
Concat | Concatenates two lists into a longer list variable. |
Create | Creates an empty list variable. |
Join | Joins a list into a single string, separating the elements with a separator. |
Map | Maps two lists into a dictionary variable. |
Random | Picks a random element from a list variable. |
Remove | Removes an element from a list variable. |
Zip | Zips two lists into a new list variable where the elements are joined two by two. |