Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for keyword (0.34 sec)

  1. doc/go_spec.html

    </pre>
    <pre>
    a
    _x9
    ThisVariableIsExported
    αβ
    </pre>
    
    <p>
    Some identifiers are <a href="#Predeclared_identifiers">predeclared</a>.
    </p>
    
    
    <h3 id="Keywords">Keywords</h3>
    
    <p>
    The following keywords are reserved and may not be used as identifiers.
    </p>
    <pre class="grammar">
    break        default      func         interface    select
    case         defer        go           map          struct
    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)
  2. misc/chrome/gophertool/manifest.json

      "description": "Go Hacking utility",
      "background": {
        "page": "background.html"
      },
      "browser_action": {
        "default_icon": "gopher.png",
        "default_popup": "popup.html"
      },
      "omnibox": { "keyword": "golang" },
      "icons": {
        "16": "gopher.png"
      },
      "permissions": [
         "tabs"
      ]
    Json
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Thu Jul 05 20:52:13 GMT 2012
    - 378 bytes
    - Viewed (0)
  3. src/archive/tar/common.go

    	Xattrs map[string]string
    
    	// PAXRecords is a map of PAX extended header records.
    	//
    	// User-defined records should have keys of the following form:
    	//	VENDOR.keyword
    	// Where VENDOR is some namespace in all uppercase, and keyword may
    	// not contain the '=' character (e.g., "GOLANG.pkg.version").
    	// The key and value should be non-empty UTF-8 strings.
    	//
    Go
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Fri Mar 15 16:01:50 GMT 2024
    - 24.7K bytes
    - Viewed (2)
  4. doc/go1.17_spec.html

    </pre>
    <pre>
    a
    _x9
    ThisVariableIsExported
    αβ
    </pre>
    
    <p>
    Some identifiers are <a href="#Predeclared_identifiers">predeclared</a>.
    </p>
    
    
    <h3 id="Keywords">Keywords</h3>
    
    <p>
    The following keywords are reserved and may not be used as identifiers.
    </p>
    <pre class="grammar">
    break        default      func         interface    select
    case         defer        go           map          struct
    HTML
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Thu Apr 11 20:22:45 GMT 2024
    - 211.6K bytes
    - Viewed (0)
  5. src/cmd/cgo/doc.go

    The CXX_FOR_TARGET, CXX_FOR_${GOOS}_${GOARCH}, and CXX
    environment variables work in a similar way for C++ code.
    
    # Go references to C
    
    Within the Go file, C's struct field names that are keywords in Go
    can be accessed by prefixing them with an underscore: if x points at a C
    struct with a field named "type", x._type accesses the field.
    C struct fields that cannot be expressed in Go, such as bit fields
    Go
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Sun Mar 31 09:02:45 GMT 2024
    - 42.1K bytes
    - Viewed (0)
  6. api/go1.13.txt

    pkg go/constant, func Make(interface{}) Value
    pkg go/constant, func Val(Value) interface{}
    pkg go/token, func IsExported(string) bool
    pkg go/token, func IsIdentifier(string) bool
    pkg go/token, func IsKeyword(string) bool
    pkg go/types, func CheckExpr(*token.FileSet, *Package, token.Pos, ast.Expr, *Info) error
    pkg log, func Writer() io.Writer
    pkg log/syslog (netbsd-arm64-cgo), const LOG_ALERT = 1
    Plain Text
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Thu Aug 08 18:44:16 GMT 2019
    - 452.6K bytes
    - Viewed (0)
  7. src/cmd/cgo/gcc.go

    	fld := make([]*ast.Field, 0, 2*len(dt.Field)+1) // enough for padding around every field
    	sizes := make([]int64, 0, 2*len(dt.Field)+1)
    	off := int64(0)
    
    	// Rename struct fields that happen to be named Go keywords into
    	// _{keyword}.  Create a map from C ident -> Go ident. The Go ident will
    	// be mangled. Any existing identifier that already has the same name on
    	// the C-side will cause the Go-mangled version to be prefixed with _.
    Go
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Thu Nov 02 16:43:23 GMT 2023
    - 97K bytes
    - Viewed (0)
  8. api/go1.txt

    pkg go/token, method (*Position) IsValid() bool
    pkg go/token, method (Pos) IsValid() bool
    pkg go/token, method (Position) String() string
    pkg go/token, method (Token) IsKeyword() bool
    pkg go/token, method (Token) IsLiteral() bool
    pkg go/token, method (Token) IsOperator() bool
    pkg go/token, method (Token) Precedence() int
    pkg go/token, method (Token) String() string
    Plain Text
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Wed Aug 14 18:58:28 GMT 2013
    - 1.7M bytes
    - Viewed (1)
Back to top