Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for Assignee (0.18 sec)

  1. src/cmd/cgo/ast.go

    	ctxSwitch
    	ctxTypeSwitch
    	ctxFile
    	ctxDecl
    	ctxSpec
    	ctxDefer
    	ctxCall  // any function call other than ctxCall2
    	ctxCall2 // function call whose result is assigned to two variables
    	ctxSelector
    )
    
    // walk walks the AST x, calling visit(f, x, context) for each node.
    func (f *File) walk(x interface{}, context astContext, visit func(*File, interface{}, astContext)) {
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Wed Jun 07 16:54:27 GMT 2023
    - 14.3K bytes
    - Viewed (0)
  2. doc/go1.17_spec.html

    <p>
    In assignments, each value must be <a href="#Assignability">assignable</a>
    to the type of the operand to which it is assigned, with the following special cases:
    </p>
    
    <ol>
    <li>
    	Any typed value may be assigned to the blank identifier.
    </li>
    
    <li>
    	If an untyped constant
    	is assigned to a variable of interface type or the blank identifier,
    HTML
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Thu Apr 11 20:22:45 GMT 2024
    - 211.6K bytes
    - Viewed (0)
  3. doc/go_spec.html

    <p>
    In assignments, each value must be <a href="#Assignability">assignable</a>
    to the type of the operand to which it is assigned, with the following special cases:
    </p>
    
    <ol>
    <li>
    	Any typed value may be assigned to the blank identifier.
    </li>
    
    <li>
    	If an untyped constant
    	is assigned to a variable of interface type or the blank identifier,
    HTML
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Apr 26 00:39:16 GMT 2024
    - 279.6K bytes
    - Viewed (0)
  4. src/archive/zip/reader.go

    		return ErrFormat
    	}
    
    	return nil
    }
    
    func readDataDescriptor(r io.Reader, f *File) error {
    	var buf [dataDescriptorLen]byte
    	// The spec says: "Although not originally assigned a
    	// signature, the value 0x08074b50 has commonly been adopted
    	// as a signature value for the data descriptor record.
    	// Implementers should be aware that ZIP files may be
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Oct 13 18:36:46 GMT 2023
    - 27.7K bytes
    - Viewed (0)
Back to top