ptr.go 65 B

123456
  1. package parser
  2. func ToPtr[T any](value T) *T {
  3. return &value
  4. }