gitlab.com/evatix-go/core@v1.3.55/coreutils/stringutil/IsDefinedPtr.go (about)

     1  package stringutil
     2  
     3  // IsDefinedPtr alias for NOT IsEmptyOrWhitespace
     4  func IsDefinedPtr(str *string) bool {
     5  	return !(str == nil || IsEmptyOrWhitespace(*str))
     6  }