MCPcopy Create free account
hub / github.com/cloudquery/cloudquery / unpackArray

Function unpackArray

plugins/destination/sqlite/client/delete.go:83–90  ·  view source on GitHub ↗
(s any)

Source from the content-addressed store, hash-verified

81}
82
83func unpackArray(s any) []any {
84 v := reflect.ValueOf(s)
85 r := make([]any, v.Len())
86 for i := range v.Len() {
87 r[i] = v.Index(i).Interface()
88 }
89 return r
90}

Callers 1

extractPredicateValuesFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected