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

Function NewCall

interpreter/interpretable.go:699–707  ·  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

697
698// NewCall creates a new call Interpretable.
699func NewCall(id int64, function, overload string, args []InterpretableV2, impl functions.FunctionOp) InterpretableCall {
700 return &evalVarArgs{
701 id: id,
702 function: function,
703 overload: overload,
704 args: args,
705 impl: impl,
706 }
707}
708
709// ID implements the Interpretable interface method.
710func (fn *evalVarArgs) ID() int64 {

Callers 2

optimizations.goFile · 0.85
TestNewCallFunction · 0.85

Calls

no outgoing calls

Tested by 1

TestNewCallFunction · 0.68