gitlab.com/evatix-go/core@v1.3.55/codestack/StacksString.go (about) 1 package codestack 2 3 func StacksString( 4 startSkipIndex int, 5 ) string { 6 stacks := NewStacksDefaultCount( 7 startSkipIndex + defaultInternalSkip, 8 ) 9 10 toString := stacks.CodeStacksString() 11 stacks.Dispose() 12 13 return toString 14 }