gitlab.com/evatix-go/core@v1.3.55/codestack/StacksCountStringUsingFmt.go (about) 1 package codestack 2 3 import "gitlab.com/evatix-go/core/constants" 4 5 func StacksCountStringUsingFmt( 6 formatter Formatter, 7 startSkipIndex, count int, 8 ) string { 9 stacks := NewStacksDefault( 10 startSkipIndex+defaultInternalSkip, 11 count, 12 ) 13 14 toString := stacks.JoinUsingFmt( 15 formatter, 16 constants.NewLineSpaceHyphenSpace) 17 stacks.Dispose() 18 19 return toString 20 }