Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for tup (0.02 sec)

  1. src/cmd/compile/internal/types2/typestring.go

    	}
    	w.byte(']')
    }
    
    func (w *typeWriter) typeName(obj *TypeName) {
    	w.string(packagePrefix(obj.pkg, w.qf))
    	w.string(obj.name)
    }
    
    func (w *typeWriter) tuple(tup *Tuple, variadic bool) {
    	w.byte('(')
    	if tup != nil {
    		for i, v := range tup.vars {
    			if i > 0 {
    				w.byte(',')
    			}
    			// parameter names are ignored for type identity and thus type hashes
    			if w.ctxt == nil && v.name != "" && w.paramNames {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  2. src/go/types/typestring.go

    	}
    	w.byte(']')
    }
    
    func (w *typeWriter) typeName(obj *TypeName) {
    	w.string(packagePrefix(obj.pkg, w.qf))
    	w.string(obj.name)
    }
    
    func (w *typeWriter) tuple(tup *Tuple, variadic bool) {
    	w.byte('(')
    	if tup != nil {
    		for i, v := range tup.vars {
    			if i > 0 {
    				w.byte(',')
    			}
    			// parameter names are ignored for type identity and thus type hashes
    			if w.ctxt == nil && v.name != "" && w.paramNames {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 12.3K bytes
    - Viewed (0)
Back to top