(b Component)
| 259 | } |
| 260 | |
| 261 | func (a *ANDer) ConnectOutput(b Component) { |
| 262 | a.next = b |
| 263 | } |
| 264 | |
| 265 | func (a *ANDer) GetOutputWire(index int) bool { |
| 266 | return a.outputs[index].Get() |
nothing calls this directly
no outgoing calls
no test coverage detected