Files

6 lines
53 B
Go

package util
func Ptr[T any](v T) *T {
return &v
}