gitlab.com/evatix-go/core@v1.3.55/conditional/IntegersPtrFunc.go (about)

     1  package conditional
     2  
     3  func IntegersPtrFunc(
     4  	isTrue bool,
     5  	trueValueFunc, falseValueFunc func() *[]int,
     6  ) *[]int {
     7  	if isTrue {
     8  		return trueValueFunc()
     9  	}
    10  
    11  	return falseValueFunc()
    12  }