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