Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for MapIterType (0.09 sec)

  1. src/cmd/compile/internal/walk/order.go

    			// For maps tmp is just one word so it hardly matters.
    			r := n.X
    			n.X = o.copyExpr(r)
    
    			// n.Prealloc is the temp for the iterator.
    			// MapIterType contains pointers and needs to be zeroed.
    			n.Prealloc = o.newTemp(reflectdata.MapIterType(), true)
    		}
    		n.Key = o.exprInPlace(n.Key)
    		n.Value = o.exprInPlace(n.Value)
    		if orderBody {
    			orderBlock(&n.Body, o.free)
    		}
    		o.out = append(o.out, n)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 02:00:33 UTC 2024
    - 42.7K bytes
    - Viewed (0)
Back to top