gitlab.com/evatix-go/core@v1.3.55/isany/AnyNull.go (about)

     1  package isany
     2  
     3  func AnyNull(anyItems ...interface{}) bool {
     4  	if len(anyItems) == 0 {
     5  		return true
     6  	}
     7  
     8  	for _, anyItem := range anyItems {
     9  		if Null(anyItem) {
    10  			return true
    11  		}
    12  	}
    13  
    14  	return false
    15  }