2023-09-01 00:18:26 +02:00

8 lines
87 B
Go

package common
func NewAndSet[T any](v T) *T {
res := new(T)
*res = v
return res
}