Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 27 for generic (0.22 sec)

  1. src/cmd/api/testdata/src/issue21181/p/p_generic.go

    Russ Cox <******@****.***> 1638378945 -0500
    Go
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Mon Dec 13 18:45:54 GMT 2021
    - 105 bytes
    - Viewed (0)
  2. src/cmd/cgo/doc.go

    see https://golang.org/pkg/go/build/#hdr-Build_Constraints).
    
    When cross-compiling, you must specify a C cross-compiler for cgo to
    use. You can do this by setting the generic CC_FOR_TARGET or the
    more specific CC_FOR_${GOOS}_${GOARCH} (for example, CC_FOR_linux_arm)
    environment variable when building the toolchain using make.bash,
    or you can set the CC environment variable any time you run the go tool.
    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)
  3. doc/go_spec.html

    Type equations are always solved for the bound type parameters only.
    </p>
    
    <p>
    Type inference supports calls of generic functions and assignments
    of generic functions to (explicitly function-typed) variables.
    This includes passing generic functions as arguments to other
    (possibly also generic) functions, and returning generic functions
    as results.
    Type inference operates on a set of equations specific to each of
    these cases.
    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)
  4. doc/go1.17_spec.html

    language version 1.17, in October 2021, before the introduction of generics.
    It is provided for historical interest.
    The current reference manual can be found <a href="/doc/go_spec.html">here</a>.
    For more information and other documents, see <a href="/">go.dev</a>.
    </p>
    
    <p>
    Go is a general-purpose language designed with systems programming
    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. api/go1.14.txt

    pkg syscall (freebsd-arm64), const SYS_SCTP_GENERIC_RECVMSG = 474
    pkg syscall (freebsd-arm64), const SYS_SCTP_GENERIC_RECVMSG ideal-int
    pkg syscall (freebsd-arm64), const SYS_SCTP_GENERIC_SENDMSG = 472
    pkg syscall (freebsd-arm64), const SYS_SCTP_GENERIC_SENDMSG ideal-int
    pkg syscall (freebsd-arm64), const SYS_SCTP_GENERIC_SENDMSG_IOV = 473
    pkg syscall (freebsd-arm64), const SYS_SCTP_GENERIC_SENDMSG_IOV ideal-int
    Plain Text
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Fri Feb 17 20:31:46 GMT 2023
    - 508.9K bytes
    - Viewed (0)
  6. src/cmd/cgo/gcc.go

    			expr = &ast.CallExpr{
    				Fun:  &ast.Ident{NamePos: (*r.Expr).Pos(), Name: "_Cgo_ptr"},
    				Args: []ast.Expr{getNewIdent(name.Mangle)},
    			}
    		case "type":
    			// Okay - might be new(T), T(x), Generic[T], etc.
    			if r.Name.Type == nil {
    				error_(r.Pos(), "expression C.%s: undefined C type '%s'", fixGo(r.Name.Go), r.Name.C)
    			}
    		case "var":
    			expr = &ast.StarExpr{Star: (*r.Expr).Pos(), X: expr}
    Go
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Thu Nov 02 16:43:23 GMT 2023
    - 97K bytes
    - Viewed (0)
  7. api/go1.txt

    pkg syscall (windows-386), const FORMAT_MESSAGE_MAX_WIDTH_MASK ideal-int
    pkg syscall (windows-386), const GENERIC_ALL ideal-int
    pkg syscall (windows-386), const GENERIC_EXECUTE ideal-int
    pkg syscall (windows-386), const GENERIC_READ ideal-int
    pkg syscall (windows-386), const GENERIC_WRITE ideal-int
    pkg syscall (windows-386), const GetFileExInfoStandard ideal-int
    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)
  8. src/bytes/bytes.go

    					return i
    				}
    				continue
    			}
    		}
    		for _, ch := range chars {
    			if r == ch {
    				return i
    			}
    		}
    	}
    	return -1
    }
    
    // Generic split: splits after each instance of sep,
    // including sepSave bytes of sep in the subslices.
    func genSplit(s, sep []byte, sepSave, n int) [][]byte {
    	if n == 0 {
    		return nil
    	}
    	if len(sep) == 0 {
    Go
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Mon Feb 19 19:51:15 GMT 2024
    - 33.8K bytes
    - Viewed (0)
  9. .github/ISSUE_TEMPLATE/11-language-change.yml

        validations:
          required: true
    
      - type: textarea
        id: generics-proposal
        attributes:
          label: Is this about generics?
          description: If so, how does this relate to the accepted design and other generics proposals?
          placeholder: |
           Yes or No
    
           If yes, 
            1. how does this relate to the accepted design and other generics proposals?
    
        validations:
          required: true
    
    Others
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Wed Nov 22 20:49:24 GMT 2023
    - 4.7K bytes
    - Viewed (0)
  10. .github/ISSUE_TEMPLATE/config.yml

    blank_issues_enabled: true
    contact_links:
      - name: Questions
        about: Please use one of the forums for questions or general discussions
    Others
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Wed Nov 22 18:12:58 GMT 2023
    - 179 bytes
    - Viewed (0)
Back to top