Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for reflect_mapaccess_faststr (0.29 sec)

  1. src/runtime/map.go

    	elem, ok := mapaccess2(t, h, key)
    	if !ok {
    		// reflect wants nil for a missing element
    		elem = nil
    	}
    	return elem
    }
    
    //go:linkname reflect_mapaccess_faststr reflect.mapaccess_faststr
    func reflect_mapaccess_faststr(t *maptype, h *hmap, key string) unsafe.Pointer {
    	elem, ok := mapaccess2_faststr(t, h, key)
    	if !ok {
    		// reflect wants nil for a missing element
    		elem = nil
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 57.6K bytes
    - Viewed (0)
Back to top