Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for xx$ (0.02 sec)

  1. src/reflect/all_test.go

    		{
    			rt:  st1,
    			idx: []int{1},
    		},
    		{
    			rt: StructOf(
    				[]StructField{
    					{Name: "XX", Type: TypeOf([0]int{})},
    					{Name: "YY", Type: TypeOf("")},
    				},
    			),
    			idx: []int{1},
    		},
    		{
    			rt: StructOf(
    				[]StructField{
    					{Name: "XX", Type: TypeOf([0]int{})},
    					{Name: "YY", Type: TypeOf("")},
    					{Name: "ZZ", Type: TypeOf([2]int{})},
    				},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 218.8K bytes
    - Viewed (0)
  2. doc/go1.17_spec.html

    var oo = 1<<s == 2<<s          // 1 and 2 have type int; oo == true
    var pp = 1<<s == 1<<33         // illegal: 1 has type int, but 1<<33 overflows int
    var xx = a[1.0<<s]             // 1.0 has type int; xx == a[0]
    var bb = make([]byte, 1.0<<s)  // 1.0 has type int; len(bb) == 0
    </pre>
    
    <h4 id="Operator_precedence">Operator precedence</h4>
    <p>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
Back to top