MCPcopy
hub / github.com/donknap/dpanel / IsEmptyArray

Function IsEmptyArray

common/function/array.go:9–17  ·  view source on GitHub ↗
(v []T)

Source from the content-addressed store, hash-verified

7)
8
9func IsEmptyArray[T interface{}](v []T) bool {
10 if v == nil {
11 return true
12 }
13 if len(v) == 0 {
14 return true
15 }
16 return false
17}
18
19func InArray[T cmp.Ordered](v []T, item T) bool {
20 if v == nil {

Callers 15

HandleMethod · 0.92
GetStatInfoMethod · 0.92
DnsApiMethod · 0.92
ImportByImageTarMethod · 0.92
DeleteMethod · 0.92
CheckUpgradeMethod · 0.92
ContainerDeployMethod · 0.92
ContainerDestroyMethod · 0.92
DownloadMethod · 0.92
NodeUpdateMethod · 0.92
GetDetailMethod · 0.92
GetListMethod · 0.92

Calls

no outgoing calls

Tested by

no test coverage detected