We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
way to declare a repetitive sets of items.
Example 1:
busInterfaces: [ { name: 'target_${index}_ifs', array: 4, ... } ]
should produce 4 bus interfaces named: target_0_ifs, target_1_ifs, target_2_ifs, target_3_ifs
target_0_ifs
target_1_ifs
target_2_ifs
target_3_ifs
Example 2:
busInterfaces: [ { name: 'target_${item}_ifs', array: ['A', 'B', 'C'], ... } ]
should produce 3 bus interfaces named: target_A_ifs, target_B_ifs, target_C_ifs
target_A_ifs
target_B_ifs
target_C_ifs
The text was updated successfully, but these errors were encountered:
No branches or pull requests
way to declare a repetitive sets of items.
Example 1:
should produce 4 bus interfaces named:
target_0_ifs
,target_1_ifs
,target_2_ifs
,target_3_ifs
Example 2:
should produce 3 bus interfaces named:
target_A_ifs
,target_B_ifs
,target_C_ifs
The text was updated successfully, but these errors were encountered: