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

Function NewCall

interpreter/interpretable.go:682–690  ·  view source on GitHub ↗

NewCall creates a new call Interpretable.

(id int64, function, overload string, args []InterpretableV2, impl functions.FunctionOp)

Source from the content-addressed store, hash-verified

680
681// NewCall creates a new call Interpretable.
682func NewCall(id int64, function, overload string, args []InterpretableV2, impl functions.FunctionOp) InterpretableCall {
683 return &evalVarArgs{
684 id: id,
685 function: function,
686 overload: overload,
687 args: args,
688 impl: impl,
689 }
690}
691
692// ID implements the Interpretable interface method.
693func (fn *evalVarArgs) ID() int64 {

Callers 2

optimizations.goFile · 0.85
TestNewCallFunction · 0.85

Calls

no outgoing calls

Tested by 1

TestNewCallFunction · 0.68