variable_dict_merge_tolerant
Define a variable resulting of the merge of two other variables, allowing merging undefined variables.
⚙️ Compatible targets: Linux
Parameters
Name | Documentation |
---|---|
prefix | The prefix of the variable name. This parameter is required. |
name | The variable to define, the full name will be prefix.name. This parameter is required. |
first_variable | The first variable, which content will be overridden in the resulting variable if necessary (written in the form prefix.name). This parameter is required. |
second_variable | The second variable, which content will override the first in the resulting variable if necessary (written in the form prefix.name). This parameter is required. |
Outcome conditions
You need to replace ${name}
with its actual canonified value.
- ✅ Ok:
variable_dict_merge_tolerant_${name}_ok
- ☑️ Already compliant:
variable_dict_merge_tolerant_${name}_kept
- 🟨 Repaired:
variable_dict_merge_tolerant_${name}_repaired
- ☑️ Already compliant:
- ❌ Error:
variable_dict_merge_tolerant_${name}_error
Example
method: variable_dict_merge_tolerant
params:
prefix: VALUE
first_variable: VALUE
second_variable: VALUE
name: VALUE
Documentation
To use the generated variable, you must use the form ${prefix.name[key]}
with each name replaced with the parameters of this method.
See variable_dict_merge for usage documentation. The only difference is that this method will not fail if one of the variables do not exist, and will return the other one. If both are undefined, the method will still fail.