gitlab.com/evatix-go/core@v1.3.55/coredata/stringslice/IsEmptyPtr.go (about) 1 package stringslice 2 3 func IsEmptyPtr(slice *[]string) bool { 4 return slice == nil || len(*slice) == 0 5 }