Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for intSlice (0.12 sec)

  1. src/reflect/value.go

    	}
    	ftyp := ctxt.ftyp
    	f := ctxt.fn
    
    	_, _, abid := funcLayout(ftyp, nil)
    
    	// Copy arguments into Values.
    	ptr := frame
    	in := make([]Value, 0, int(ftyp.InCount))
    	for i, typ := range ftyp.InSlice() {
    		if typ.Size() == 0 {
    			in = append(in, Zero(toRType(typ)))
    			continue
    		}
    		v := Value{typ, nil, flag(typ.Kind())}
    		steps := abid.call.stepsForValue(i)
    		if st := steps[0]; st.kind == abiStepStack {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
Back to top