Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for Mets (0.48 sec)

  1. src/cmd/compile/internal/ssagen/ssa.go

    	do(typ.Params())
    	do(typ.Results())
    }
    
    // newHeapaddr allocates heap memory for n and sets its heap address.
    func (s *state) newHeapaddr(n *ir.Name) {
    	s.setHeapaddr(n.Pos(), n, s.newObject(n.Type(), nil))
    }
    
    // setHeapaddr allocates a new PAUTO variable to store ptr (which must be non-nil)
    // and then sets it as n's heap address.
    func (s *state) setHeapaddr(pos src.XPos, n *ir.Name, ptr *ssa.Value) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  2. doc/go_spec.html

    non-interface terms must be pairwise disjoint (the pairwise intersection of the type sets must be empty).
    Given a type parameter <code>P</code>:
    </p>
    
    <pre>
    interface {
    	P                // illegal: P is a type parameter
    	int | ~P         // illegal: P is a type parameter
    	~int | MyInt     // illegal: the type sets for ~int and MyInt are not disjoint (~int includes MyInt)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 21:07:21 UTC 2024
    - 281.5K bytes
    - Viewed (0)
Back to top