GoCollections/util/unsafe/unsafe.go

12 lines
149 B
Go
Raw Normal View History

2022-10-31 20:54:53 +08:00
package unsafe
import (
"unsafe"
"github.com/tursom/GoCollections/lang"
)
func Sizeof[T any]() uintptr {
return unsafe.Sizeof(lang.Nil[T]())
}