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

Method Name

common/decls/decls.go:112–117  ·  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

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

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