MCPcopy Create free account
hub / github.com/brimdata/super / Inner

Function Inner

vector/array.go:56–68  ·  view source on GitHub ↗
(val Any)

Source from the content-addressed store, hash-verified

54}
55
56func Inner(val Any) Any {
57 switch val := val.(type) {
58 case *Array:
59 return val.Values
60 case *Set:
61 return val.Values
62 case *Dict:
63 return Inner(val.Any)
64 case *View:
65 return Inner(val.Any)
66 }
67 panic(val)
68}

Callers 1

CallMethod · 0.92

Calls

no outgoing calls

Tested by

no test coverage detected