Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 43 of 43 for isTyped (0.27 sec)

  1. src/go/types/api_test.go

    	pred := func(b bool, s string) {
    		if b {
    			if buf.Len() > 0 {
    				buf.WriteString(", ")
    			}
    			buf.WriteString(s)
    		}
    	}
    
    	pred(tv.IsVoid(), "void")
    	pred(tv.IsType(), "type")
    	pred(tv.IsBuiltin(), "builtin")
    	pred(tv.IsValue() && tv.Value != nil, "const")
    	pred(tv.IsValue() && tv.Value == nil, "value")
    	pred(tv.IsNil(), "nil")
    	pred(tv.Addressable(), "addressable")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 94.2K bytes
    - Viewed (0)
  2. src/cmd/vendor/github.com/ianlancetaylor/demangle/ast.go

    		return r
    	}
    	return t
    }
    
    func (t *Typed) GoString() string {
    	return t.goString(0, "")
    }
    
    func (t *Typed) goString(indent int, field string) string {
    	return fmt.Sprintf("%*s%sTyped:\n%s\n%s", indent, "", field,
    		t.Name.goString(indent+2, "Name: "),
    		t.Type.goString(indent+2, "Type: "))
    }
    
    // Qualified is a name in a scope.
    type Qualified struct {
    	Scope AST
    	Name  AST
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 105.8K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"(TypeAndValue).Assignable", Method, 5},
    		{"(TypeAndValue).HasOk", Method, 5},
    		{"(TypeAndValue).IsBuiltin", Method, 5},
    		{"(TypeAndValue).IsNil", Method, 5},
    		{"(TypeAndValue).IsType", Method, 5},
    		{"(TypeAndValue).IsValue", Method, 5},
    		{"(TypeAndValue).IsVoid", Method, 5},
    		{"Alias", Type, 22},
    		{"ArgumentError", Type, 18},
    		{"ArgumentError.Err", Field, 18},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 534.2K bytes
    - Viewed (0)
Back to top