For something like below
cables:
B1: {}
connections:
- X1: [1,2,3,4]
- B1
- X2: [1,2,3,4]
It should be inferred that we want 4 wires and that B1 wire set is [1,2,3,4]
If we go more ambitous... perhaps
Example:
This compiles into:
- X1: [1,2,3,4]
- B1
- X2: [1,2,3,4]
Which will decompose to:
- X1: [1,2,3,4]
- B1: [1,2,3,4]
- X2: [1,2,3,4]
Anyway be interesting to hear other's people's perspective on overall wireviz syntax ergonomics
For something like below
It should be inferred that we want 4 wires and that B1 wire set is [1,2,3,4]
If we go more ambitous... perhaps
Example:
This compiles into:
Which will decompose to:
Anyway be interesting to hear other's people's perspective on overall wireviz syntax ergonomics