gitlab.com/evatix-go/core@v1.3.55/isany/AllNull.go (about) 1 package isany 2 3 func AllNull(anyItems ...interface{}) bool { 4 if len(anyItems) == 0 { 5 return false 6 } 7 8 for _, anyItem := range anyItems { 9 if !Null(anyItem) { 10 return false 11 } 12 } 13 14 return true 15 }