8 lines
81 B
Go
8 lines
81 B
Go
package utils
|
|
|
|
func Copy[T any](old *T) T {
|
|
T1 := *old
|
|
T2 := *&T1
|
|
return T2
|
|
}
|