| 20 | |
| 21 | func Chord(sources ...<-chan int) <-chan []int { |
| 22 | type input struct { // Used to send inputs |
| 23 | idx, input int // between goroutines |
| 24 | } |
| 25 | |
| 26 | dest := make(chan []int) // The output channel |
| 27 |
nothing calls this directly
no outgoing calls
no test coverage detected