kubernetes/vendor/github.com/google/cel-go/common/stdlib/standard.go

var stdFunctions

var stdTypes

func init() {}

// Functions returns the set of standard library function declarations and definitions for CEL.
func Functions() []*decls.FunctionDecl {}

// Types returns the set of standard library types for CEL.
func Types() []*decls.VariableDecl {}

func notStrictlyFalse(value ref.Val) ref.Val {}

func inAggregate(lhs ref.Val, rhs ref.Val) ref.Val {}

func function(name string, opts ...decls.FunctionOpt) *decls.FunctionDecl {}

func argTypes(args ...*types.Type) []*types.Type {}

func noBinaryOverrides(rhs, lhs ref.Val) ref.Val {}

func noFunctionOverrides(args ...ref.Val) ref.Val {}

func identity(val ref.Val) ref.Val {}

func convertToType(t ref.Type) functions.UnaryOp {}