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

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