FuncRegistry contains lists of functions for different scope/run-time evaluation contexts.
| 36 | |
| 37 | // FuncRegistry contains lists of functions for different scope/run-time evaluation contexts. |
| 38 | FuncRegistry struct { |
| 39 | mu sync.RWMutex |
| 40 | funcs map[string]Func |
| 41 | aggs map[string]struct{} |
| 42 | } |
| 43 | ) |
| 44 | |
| 45 | // EmptyEvalFunc a no-op evaluation function for use in |
nothing calls this directly
no outgoing calls
no test coverage detected