github.com/enbility/spine-go@v0.7.0/util/ptr.go (about)

     1  package util
     2  
     3  func Ptr[T any](v T) *T {
     4  	return &v
     5  }