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