Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for Int32 (0.23 sec)

  1. doc/go1.22.html

    <code>Int31n</code>,
    <code>Int63</code>,
    and
    <code>Int64n</code>
    top-level functions and methods from <code>math/rand</code>
    are spelled more idiomatically in <code>math/rand/v2</code>:
    <code>IntN</code>,
    <code>Int32</code>,
    <code>Int32N</code>,
    <code>Int64</code>,
    and
    <code>Int64N</code>.
    There are also new top-level functions and methods
    <code>Uint32</code>,
    <code>Uint32N</code>,
    <code>Uint64</code>,
    HTML
    - Registered: Tue Feb 06 11:13:10 GMT 2024
    - Last Modified: Wed Jan 31 20:51:56 GMT 2024
    - 45.6K bytes
    - Viewed (0)
  2. doc/go1.17_spec.html

    var i = 1&lt;&lt;s                   // 1 has type int
    var j int32 = 1&lt;&lt;s             // 1 has type int32; j == 0
    var k = uint64(1&lt;&lt;s)           // 1 has type uint64; k == 1&lt;&lt;33
    var m int = 1.0&lt;&lt;s             // 1.0 has type int; m == 1&lt;&lt;33
    var n = 1.0&lt;&lt;s == j            // 1.0 has type int32; n == true
    var o = 1&lt;&lt;s == 2&lt;&lt;s           // 1 and 2 have type int; o == false
    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

    var i = 1&lt;&lt;s                   // 1 has type int
    var j int32 = 1&lt;&lt;s             // 1 has type int32; j == 0
    var k = uint64(1&lt;&lt;s)           // 1 has type uint64; k == 1&lt;&lt;33
    var m int = 1.0&lt;&lt;s             // 1.0 has type int; m == 1&lt;&lt;33
    var n = 1.0&lt;&lt;s == j            // 1.0 has type int32; n == true
    var o = 1&lt;&lt;s == 2&lt;&lt;s           // 1 and 2 have type int; o == false
    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)
Back to top