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

Method ID

common/decls/decls.go:642–647  ·  view source on GitHub ↗

ID mirrors the overload signature and provides a unique id which may be referenced within the type-checker and interpreter to optimize performance. The ID format is usually one of two styles: global: _ _ member: _ _ _

()

Source from the content-addressed store, hash-verified

640// global: <functionName>_<argType>_<argTypeN>
641// member: <memberType>_<functionName>_<argType>_<argTypeN>
642func (o *OverloadDecl) ID() string {
643 if o == nil {
644 return ""
645 }
646 return o.id
647}
648
649// ArgTypes contains the set of argument types expected by the overload.
650//

Callers 1

SignatureEqualsMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected