MCPcopy Create free account
hub / github.com/expr-lang/expr / AsAny

Function AsAny

expr.go:66–70  ·  view source on GitHub ↗

AsAny tells the compiler to expect any result.

()

Source from the content-addressed store, hash-verified

64
65// AsAny tells the compiler to expect any result.
66func AsAny() Option {
67 return func(c *conf.Config) {
68 c.ExpectAny = true
69 }
70}
71
72// AsKind tells the compiler to expect kind of the result.
73func AsKind(kind reflect.Kind) Option {

Calls

no outgoing calls

Used in the wild real call sites across dependent graphs

searching dependent graphs…