github.com/status-im/status-go@v1.1.0/services/wallet/common/ptrutils.go (about)

     1  package common
     2  
     3  func NewAndSet[T any](v T) *T {
     4  	res := new(T)
     5  	*res = v
     6  	return res
     7  }