mirror of
https://github.com/tursom/GoCollections.git
synced 2025-03-19 21:50:13 +08:00
12 lines
149 B
Go
12 lines
149 B
Go
|
package unsafe
|
||
|
|
||
|
import (
|
||
|
"unsafe"
|
||
|
|
||
|
"github.com/tursom/GoCollections/lang"
|
||
|
)
|
||
|
|
||
|
func Sizeof[T any]() uintptr {
|
||
|
return unsafe.Sizeof(lang.Nil[T]())
|
||
|
}
|