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
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
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_ifsExample 2:
should produce 3 bus interfaces named:
target_A_ifs,target_B_ifs,target_C_ifs