(fn reflect.Value, outChan reflect.Value, inputs ...interface{})
| 77 | } |
| 78 | |
| 79 | func _functionCallWithChanOutput(fn reflect.Value, outChan reflect.Value, inputs ...interface{}) []reflect.Value { |
| 80 | var args []reflect.Value |
| 81 | for _, input := range inputs { |
| 82 | args = append(args, reflect.ValueOf(input)) |
| 83 | } |
| 84 | args = append(args, outChan) |
| 85 | return fn.Call(args) |
| 86 | } |
| 87 | |
| 88 | func _functionCall(fn reflect.Value, inputs ...interface{}) []reflect.Value { |
| 89 | var args []reflect.Value |
no outgoing calls
no test coverage detected
searching dependent graphs…