gitlab.com/evatix-go/core@v1.3.55/corecsv/StringersToString.go (about) 1 package corecsv 2 3 import ( 4 "fmt" 5 "strings" 6 ) 7 8 func StringersToString( 9 joiner string, 10 isIncludeQuote, 11 isIncludeSingleQuote bool, // disable this will give double quote 12 stringerFunctions ...fmt.Stringer, 13 ) string { 14 slice := StringersToCsvStrings( 15 isIncludeQuote, 16 isIncludeSingleQuote, 17 stringerFunctions...) 18 19 return strings.Join(slice, joiner) 20 }