Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for Milde (0.22 sec)

  1. api/go1.18.txt

    pkg go/ast, type IndexListExpr struct, X Expr
    pkg go/ast, type TypeSpec struct, TypeParams *FieldList
    pkg go/constant, method (Kind) String() string
    pkg go/token, const TILDE = 88
    pkg go/token, const TILDE Token
    pkg go/types, func Instantiate(*Context, Type, []Type, bool) (Type, error)
    pkg go/types, func NewContext() *Context
    pkg go/types, func NewSignature //deprecated
    Plain Text
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Fri Feb 17 20:31:46 GMT 2023
    - 13K bytes
    - Viewed (0)
  2. src/cmd/api/main_test.go

    		case *types.Union:
    			var buf bytes.Buffer
    			nu := emb.Len()
    			for i := 0; i < nu; i++ {
    				if i > 0 {
    					buf.WriteString(" | ")
    				}
    				term := emb.Term(i)
    				if term.Tilde() {
    					buf.WriteByte('~')
    				}
    				w.writeType(&buf, term.Type())
    			}
    			list = append(list, buf.String())
    		}
    	}
    	sort.Strings(list)
    	return list
    }
    
    Go
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Tue Apr 09 20:48:51 GMT 2024
    - 31.4K bytes
    - Viewed (0)
  3. doc/go_spec.html

    	<code>core(C)</code> and <code>A</code> must unify loosely.
    	If <code>P</code> does not have a known type argument
    	and <code>C</code> contains exactly one type term <code>T</code>
    	that is not an underlying (tilde) type, unification adds the
    	mapping <code>P ➞ T</code> to the map.
    </li>
    <li>
    	If <code>C</code> does not have a core type
    	and <code>P</code> has a known type argument <code>A</code>,
    HTML
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Thu Apr 11 20:22:45 GMT 2024
    - 279.3K bytes
    - Viewed (0)
Back to top