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

Function TypeOf

types/types.go:37–42  ·  view source on GitHub ↗
(v any)

Source from the content-addressed store, hash-verified

35)
36
37func TypeOf(v any) Type {
38 if v == nil {
39 return Nil
40 }
41 return rtype{t: reflect.TypeOf(v)}
42}
43
44type anyType struct{}
45

Callers 1

types.goFile · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…