MCPcopy Create free account
hub / github.com/cel-expr/cel-go / Name

Method Name

common/decls/decls.go:115–120  ·  view source on GitHub ↗

Name returns the function name in human-readable terms, e.g. 'contains' of 'math.least'

()

Source from the content-addressed store, hash-verified

113
114// Name returns the function name in human-readable terms, e.g. 'contains' of 'math.least'
115func (f *FunctionDecl) Name() string {
116 if f == nil {
117 return ""
118 }
119 return f.name
120}
121
122// Description provides an overview of the function's purpose.
123//

Callers 6

TestNilFunctionFunction · 0.95
DocumentationMethod · 0.95
MergeMethod · 0.95
SubsetMethod · 0.95
AddOverloadMethod · 0.95
BindingsMethod · 0.95

Calls

no outgoing calls

Tested by 1

TestNilFunctionFunction · 0.76