empty-value_go118.go 88 B

123456
  1. package missinggo
  2. func IsZeroValue[T comparable](i T) bool {
  3. var z T
  4. return i == z
  5. }