zero-value.go 63 B

12345
  1. package generics
  2. func ZeroValue[T any]() (zero T) {
  3. return
  4. }