FuncFn is a function that can be executed.
func(ctx context.Context, data *model.Value, args model.Values) (*model.Value, error)
| 135 | |
| 136 | // FuncFn is a function that can be executed. |
| 137 | type FuncFn func(ctx context.Context, data *model.Value, args model.Values) (*model.Value, error) |
| 138 | |
| 139 | // FuncCollection is a collection of functions that can be executed. |
| 140 | type FuncCollection map[string]FuncFn |
nothing calls this directly
no outgoing calls
no test coverage detected