MCPcopy Create free account
hub / github.com/chrislusf/glow / _functionCallWithChanOutput

Function _functionCallWithChanOutput

flow/dataset_map.go:79–86  ·  view source on GitHub ↗
(fn reflect.Value, outChan reflect.Value, inputs ...interface{})

Source from the content-addressed store, hash-verified

77}
78
79func _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
88func _functionCall(fn reflect.Value, inputs ...interface{}) []reflect.Value {
89 var args []reflect.Value

Callers 1

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…