Set¶
| Name | Mandatory | Description | Default | Type | 
|---|---|---|---|---|
| ⬅️ Input | The value to be set to the variable. | Any | ||
| Output ➡️ | The input value is passed through as the output. | Any | ||
| Name | No | The name of the variable. | `` | StringVar(Any) | 
| Key | No | The key of the value to write in the table (parameter applicable only if the target variable is a table). | none | Any | 
| Global | No | If the variable is available to all of the wires in the same mesh. | false | Bool | 
| Tracked | No | If the variable should be marked as tracked. | false | Bool | 
Creates a mutable variable and assigns a value to it.
Details¶
Set creates a mutable variable and assigns a value to it. Once created this variable can be modified.
The name of the variable comes from the Name parameter and the variable value comes from the input. The type of input controls the kind of variable that will created: numeric input creates numeric variable, string input creates string variable, and sequence input would create a sequence variable.
To create a table variable, along with the input, you also have to pass the key in the Key parameter. In this case the input (whatever it may be - numeric, string, sequence) becomes the value of the key that was passed in parameter Key.
The Global parameter controls whether the created variables can be referenced across wires (Global set to true) or only within the current wire (Global set to false, default behavior).
Though it will generate a warning Set can also be used to update existing variables (like adding a new key-value pair to an existing table).
[!NOTE] Do not use
Pushto update any variables created bySet(or its aliases>=). Such variables are best best updated bySetitself (all types of variables) orAppendTo(only sequences and string variables).
Variables may be locally scoped (created with Global: false; exists only for current wire) or globally scoped (created with Global: true; exists for all wires of that mesh). Hence, in update mode (i.e. when you apply Set to an existing variable) the Global parameter is used in conjunction with the Name parameter to identify the correct variable to update.
The input to this shard is used as the value for the variable being created and is also passed through as this shard's output.
[!NOTE]
Sethas one alias:>=meaningSet(... Global: false).
Examples¶
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 |  |