gitlab.com/evatix-go/core@v1.3.55/coredata/corestr/LengthOfPointerStrings.go (about) 1 package corestr 2 3 func LengthOfPointerStrings(stringItems *[]*string) int { 4 if stringItems == nil || *stringItems == nil { 5 return 0 6 } 7 8 return len(*stringItems) 9 }