Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for mapiterinit (0.08 sec)

  1. src/runtime/map.go

    //
    // Do not remove or change the type signature.
    // See go.dev/issue/67401.
    //
    //go:linkname mapiterinit
    func mapiterinit(t *maptype, h *hmap, it *hiter) {
    	if raceenabled && h != nil {
    		callerpc := getcallerpc()
    		racereadpc(unsafe.Pointer(h), callerpc, abi.FuncPCABIInternal(mapiterinit))
    	}
    
    	it.t = t
    	if h == nil || h.count == 0 {
    		return
    	}
    
    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