mirror of
https://github.com/tursom/GoCollections.git
synced 2025-03-15 18:36:56 +08:00
7 lines
57 B
Go
7 lines
57 B
Go
package lang
|
|
|
|
func Nil[T any]() T {
|
|
var n T
|
|
return n
|
|
}
|