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