gitlab.com/evatix-go/core@v1.3.55/corecsv/StringersToStringDefault.go (about)

     1  package corecsv
     2  
     3  import (
     4  	"fmt"
     5  
     6  	"gitlab.com/evatix-go/core/constants"
     7  )
     8  
     9  func StringersToStringDefault(
    10  	stringerFunctions ...fmt.Stringer,
    11  ) string {
    12  	return StringersToString(
    13  		constants.CommaSpace,
    14  		true,
    15  		false,
    16  		stringerFunctions...)
    17  }