Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for typeParamsById (0.13 sec)

  1. src/go/types/unify.go

    		}
    		w.typ(x)
    		w.string(": ")
    		w.typ(u.at(x))
    	}
    	w.byte(']')
    	return buf.String()
    }
    
    type typeParamsById []*TypeParam
    
    func (s typeParamsById) Len() int           { return len(s) }
    func (s typeParamsById) Less(i, j int) bool { return s[i].id < s[j].id }
    func (s typeParamsById) Swap(i, j int)      { s[i], s[j] = s[j], s[i] }
    
    // join unifies the given type parameters x and y.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:24:39 UTC 2024
    - 27.9K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/types2/unify.go

    		}
    		w.typ(x)
    		w.string(": ")
    		w.typ(u.at(x))
    	}
    	w.byte(']')
    	return buf.String()
    }
    
    type typeParamsById []*TypeParam
    
    func (s typeParamsById) Len() int           { return len(s) }
    func (s typeParamsById) Less(i, j int) bool { return s[i].id < s[j].id }
    func (s typeParamsById) Swap(i, j int)      { s[i], s[j] = s[j], s[i] }
    
    // join unifies the given type parameters x and y.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:24:39 UTC 2024
    - 27.8K bytes
    - Viewed (0)
Back to top