gitlab.com/evatix-go/core@v1.3.55/codestack/NewStacksDefault.go (about)

     1  package codestack
     2  
     3  func NewStacksDefault(
     4  	startSkipIndex,
     5  	stackCount int,
     6  ) TraceCollection {
     7  	return NewStacks(
     8  		true,
     9  		true,
    10  		startSkipIndex+defaultInternalSkip,
    11  		stackCount)
    12  }