Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 593 for typC (0.14 sec)

  1. src/reflect/type.go

    	AssignableTo(u Type) bool
    
    	// ConvertibleTo reports whether a value of the type is convertible to type u.
    	// Even if ConvertibleTo returns true, the conversion may still panic.
    	// For example, a slice of type []T is convertible to *[N]T,
    	// but the conversion will panic if its length is less than N.
    	ConvertibleTo(u Type) bool
    
    	// Comparable reports whether values of this type are comparable.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 85.5K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/types/type.go

    }
    
    // Map contains Type fields specific to maps.
    type Map struct {
    	Key  *Type // Key type
    	Elem *Type // Val (elem) type
    
    	Bucket *Type // internal struct type representing a hash bucket
    }
    
    // MapType returns t's extra map-specific fields.
    func (t *Type) MapType() *Map {
    	t.wantEtype(TMAP)
    	return t.extra.(*Map)
    }
    
    // Forward contains Type fields specific to forward types.
    type Forward struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:29:45 UTC 2024
    - 49.5K bytes
    - Viewed (0)
  3. src/go/parser/parser.go

    				if typ.Dir == ast.RECV {
    					// error: (<-type) is (<-(<-chan T))
    					p.errorExpected(typ.Arrow, "'chan'")
    				}
    				arrow, typ.Begin, typ.Arrow = typ.Arrow, arrow, arrow
    				dir, typ.Dir = typ.Dir, ast.RECV
    				typ, ok = typ.Value.(*ast.ChanType)
    			}
    			if dir == ast.SEND {
    				p.errorExpected(arrow, "channel type")
    			}
    
    			return x
    		}
    
    		// <-(expr)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 08 20:07:50 UTC 2023
    - 72.2K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/types2/expr.go

    		if isNonTypeParamInterface(x.typ) || isNonTypeParamInterface(y.typ) {
    			return true
    		}
    		// A boolean type can only convert to another boolean type.
    		if allBoolean(x.typ) != allBoolean(y.typ) {
    			return false
    		}
    		// A string type can only convert to another string type.
    		if allString(x.typ) != allString(y.typ) {
    			return false
    		}
    		// Untyped nil can only convert to a type that has a nil.
    		if x.isNil() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 51.7K bytes
    - Viewed (0)
  5. src/go/types/expr.go

    		if isNonTypeParamInterface(x.typ) || isNonTypeParamInterface(y.typ) {
    			return true
    		}
    		// A boolean type can only convert to another boolean type.
    		if allBoolean(x.typ) != allBoolean(y.typ) {
    			return false
    		}
    		// A string type can only convert to another string type.
    		if allString(x.typ) != allString(y.typ) {
    			return false
    		}
    		// Untyped nil can only convert to a type that has a nil.
    		if x.isNil() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 49.7K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/syntax/parser.go

    			par := list[i]
    			if par.Type != nil {
    				typ = par.Type
    				if par.Name == nil {
    					errPos = StartPos(typ)
    					par.Name = NewName(errPos, "_")
    				}
    			} else if typ != nil {
    				par.Type = typ
    			} else {
    				// par.Type == nil && typ == nil => we only have a par.Name
    				errPos = par.Name.Pos()
    				t := p.badExpr()
    				t.pos = errPos // correct position
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 62.9K bytes
    - Viewed (0)
  7. src/go/types/api_test.go

    		{Typ[Int], Typ[Float32], true},
    		{Typ[Int], Typ[String], true},
    		{newDefined(Typ[Int]), Typ[Int], true},
    		{newDefined(new(Struct)), new(Struct), true},
    		{newDefined(Typ[Int]), new(Struct), false},
    		{Typ[UntypedInt], Typ[Int], true},
    		{NewSlice(Typ[Int]), NewArray(Typ[Int], 10), true},
    		{NewSlice(Typ[Int]), NewArray(Typ[Uint], 10), false},
    		{NewSlice(Typ[Int]), NewPointer(NewArray(Typ[Int], 10)), true},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 94.2K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/types2/api_test.go

    		{newDefined(Typ[Int]), Typ[Int], true},
    		{newDefined(new(Struct)), new(Struct), true},
    		{newDefined(Typ[Int]), new(Struct), false},
    		{Typ[UntypedInt], Typ[Int], true},
    		{NewSlice(Typ[Int]), NewArray(Typ[Int], 10), true},
    		{NewSlice(Typ[Int]), NewArray(Typ[Uint], 10), false},
    		{NewSlice(Typ[Int]), NewPointer(NewArray(Typ[Int], 10)), true},
    		{NewSlice(Typ[Int]), NewPointer(NewArray(Typ[Uint], 10)), false},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 93.3K bytes
    - Viewed (0)
  9. src/runtime/mbitmap.go

    //
    //go:nosplit
    func typeBitsBulkBarrier(typ *_type, dst, src, size uintptr) {
    	if typ == nil {
    		throw("runtime: typeBitsBulkBarrier without type")
    	}
    	if typ.Size_ != size {
    		println("runtime: typeBitsBulkBarrier with type ", toRType(typ).string(), " of size ", typ.Size_, " but memory size", size)
    		throw("runtime: invalid typeBitsBulkBarrier")
    	}
    	if typ.Kind_&abi.KindGCProg != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 60K bytes
    - Viewed (0)
  10. src/go/printer/testdata/parser.go

    	typ := p.tryVarType(isParam)
    	if typ == nil {
    		pos := p.pos
    		p.errorExpected(pos, "type")
    		p.next() // make progress
    		typ = &ast.BadExpr{pos, p.pos}
    	}
    	return typ
    }
    
    func (p *parser) parseVarList(isParam bool) (list []ast.Expr, typ ast.Expr) {
    	if p.trace {
    		defer un(trace(p, "VarList"))
    	}
    
    	// a list of identifiers looks like a list of type names
    	for {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 20 20:19:51 UTC 2023
    - 50.5K bytes
    - Viewed (0)
Back to top