MCPcopy Create free account
hub / github.com/rabbitstack/fibratus / functionNames

Function functionNames

pkg/filter/ql/function.go:116–123  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

114}
115
116func functionNames() []string {
117 names := make([]string, 0, len(funcs))
118 for _, f := range funcs {
119 names = append(names, f.Name().String())
120 }
121 sort.Slice(names, func(i, j int) bool { return names[i] < names[j] })
122 return names
123}
124
125// Foreach adds iteration capabilities to the rule language. The decision
126// to keep the function implementation outside the functions package is

Callers 1

function.goFile · 0.85

Calls 2

StringMethod · 0.65
NameMethod · 0.65

Tested by

no test coverage detected