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

Method Name

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

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

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