Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for Reference (0.41 sec)

  1. doc/go_spec.html

    </p>
    
    <p>
    If type arguments contain cyclic references to themselves
    through bound type parameters, simplification and thus type
    inference fails.
    Otherwise, type inference succeeds.
    </p>
    
    <h4 id="Type_unification">Type unification</h4>
    
    <p>
    Type inference solves type equations through <i>type unification</i>.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 21:07:21 UTC 2024
    - 281.5K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssagen/ssa.go

    		return s.newValue3(ssa.OpSliceMake, n.Type(), ptr, len, len)
    	case ir.OCFUNC:
    		n := n.(*ir.UnaryExpr)
    		aux := n.X.(*ir.Name).Linksym()
    		// OCFUNC is used to build function values, which must
    		// always reference ABIInternal entry points.
    		if aux.ABI() != obj.ABIInternal {
    			s.Fatalf("expected ABIInternal: %v", aux.ABI())
    		}
    		return s.entryNewValue1A(ssa.OpAddr, n.Type(), aux, s.sb)
    	case ir.ONAME:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
Back to top