2
0

etc.go 55 B

12345
  1. package util
  2. func ToPtr[T any](x T) *T {
  3. return &x
  4. }