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

Function FindReverse

common/operators/operators.go:116–122  ·  view source on GitHub ↗

FindReverse returns the unmangled, text representation of the operator.

(symbol string)

Source from the content-addressed store, hash-verified

114
115// FindReverse returns the unmangled, text representation of the operator.
116func FindReverse(symbol string) (string, bool) {
117 op, found := operatorMap[symbol]
118 if !found {
119 return "", false
120 }
121 return op.displayName, true
122}
123
124// FindReverseBinaryOperator returns the unmangled, text representation of a binary operator.
125//

Callers 3

visitCallUnaryMethod · 0.92
WrapOnOperatorsFunction · 0.92
formatSignatureFunction · 0.92

Calls

no outgoing calls

Tested by

no test coverage detected