GoCollections/lang/Lang.go

7 lines
57 B
Go
Raw Normal View History

2022-03-21 11:02:41 +08:00
package lang
func Nil[T any]() T {
var n T
return n
}