go-json/internal/runtime/type.go

10 lines
103 B
Go

package runtime
import "unsafe"
type SliceHeader struct {
Data unsafe.Pointer
Len int
Cap int
}