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

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