type internal/abi.MapType

13 uses

	internal/abi (current package)
		type.go#L353: 			MapType
		type.go#L382: 		tt := (*MapType)(unsafe.Pointer(t))
		type.go#L403: func (t *Type) MapType() *MapType {
		type.go#L407: 	return (*MapType)(unsafe.Pointer(t))
		type.go#L467: type MapType struct {
		type.go#L482: func (mt *MapType) IndirectKey() bool { // store ptr to key instead of key itself
		type.go#L485: func (mt *MapType) IndirectElem() bool { // store ptr to elem instead of elem itself
		type.go#L488: func (mt *MapType) ReflexiveKey() bool { // true if k==k for all keys
		type.go#L491: func (mt *MapType) NeedKeyUpdate() bool { // true if we need to update key on an overwrite
		type.go#L494: func (mt *MapType) HashMightPanic() bool { // true if hash function might panic
		type.go#L500: 		return (*MapType)(unsafe.Pointer(t)).Key

	reflect
		type.go#L393: 	abi.MapType

	runtime
		type.go#L238: type maptype = abi.MapType