Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for Burns (0.13 sec)

  1. src/cmd/asm/internal/asm/testdata/ppc64.s

    	// Hex constant 0xFFFFFFFE00000001
    	MOVD $-8589934591, R5           // 38a0ffff or 0602000038a00001
    
    	// For #66955. Verify this opcode turns into a load and assembles.
    	MOVD $-6795364578871345152, R5  // 3ca00000e8a50000 or 04100000e4a00000
    
    	MOVD 8(R3), R4                  // e8830008
    	MOVD (R3)(R4), R5               // 7ca4182a
    Others
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Wed Apr 24 15:53:25 GMT 2024
    - 49K bytes
    - Viewed (0)
  2. doc/go_spec.html

    </pre>
    
    <p>
    A <a href="#Type_parameter_declarations">type parameter</a> or a <a href="#Type_declarations">generic type</a>
    may be used as a type in a case. If upon <a href="#Instantiations">instantiation</a> that type turns
    out to duplicate another entry in the switch, the first matching case is chosen.
    </p>
    
    <pre>
    func f[P any](x any) int {
    	switch x.(type) {
    	case P:
    		return 0
    	case string:
    		return 1
    HTML
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Thu May 02 22:43:51 GMT 2024
    - 279.6K bytes
    - Viewed (0)
Back to top