Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for 1e0i (0.17 sec)

  1. src/reflect/all_test.go

    		// complex
    		{complex64(532.125 + 10i), [...]bool{false, false, false, true}},
    		{complex128(564.25 + 1i), [...]bool{false, false, false, true}},
    		// underlying
    		{integer(-132), [...]bool{true, false, false, false}},
    		{uinteger(132), [...]bool{false, true, false, false}},
    		{float(256.25), [...]bool{false, false, true, false}},
    		{complex(532.125 + 10i), [...]bool{false, false, false, true}},
    		// not-acceptable
    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

    </p>
    
    <pre>
    0i
    0123i         // == 123i for backward-compatibility
    0o123i        // == 0o123 * 1i == 83i
    0xabci        // == 0xabc * 1i == 2748i
    0.i
    2.71828i
    1.e+0i
    6.67428e-11i
    1E6i
    .25i
    .12345E+5i
    0x1p-2i       // == 0x1p-2 * 1i == 0.25i
    </pre>
    
    
    <h3 id="Rune_literals">Rune literals</h3>
    
    <p>
    A rune literal represents a <a href="#Constants">rune constant</a>,
    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