gitlab.com/evatix-go/core@v1.3.55/simplewrap/TitleSquareCsvMeta.go (about) 1 package simplewrap 2 3 import "gitlab.com/evatix-go/core/internal/csvinternal" 4 5 // TitleSquareCsvMeta 6 // 7 // Usages TitleSquareMeta to give the final output 8 // 9 // Example : 10 // - Title : [Value] (csv meta items) 11 func TitleSquareCsvMeta( 12 title string, 13 value interface{}, 14 metaCsvItems ...interface{}, 15 ) string { 16 csvString := csvinternal.AnyItemsToStringDefault( 17 metaCsvItems...) 18 19 return TitleSquareMeta( 20 title, 21 value, 22 csvString) 23 }