gitlab.com/evatix-go/core@v1.3.55/coredata/stringslice/MakeDefault.go (about)

     1  package stringslice
     2  
     3  import "gitlab.com/evatix-go/core/constants"
     4  
     5  func MakeDefault(capacity int) []string {
     6  	return make([]string, constants.Zero, capacity)
     7  }