Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for assume (0.16 sec)

  1. doc/go_mem.html

    it must not allow a single read to observe multiple values,
    and it must not allow a single write to write multiple values.
    </p>
    
    <p>
    All the following examples assume that `*p` and `*q` refer to
    memory locations accessible to multiple goroutines.
    </p>
    
    <p>
    Not introducing data races into race-free programs means not moving
    HTML
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Mon Mar 04 15:54:42 GMT 2024
    - 26.6K bytes
    - Viewed (0)
  2. doc/go1.17_spec.html

    _ = complex(1, 2&lt;&lt;s)               // illegal: 2 assumes floating-point type, cannot shift
    var rl = real(c64)                 // float32
    var im = imag(a)                   // float64
    const c = imag(b)                  // untyped constant -1.4
    _ = imag(3 &lt;&lt; s)                   // illegal: 3 assumes complex type, cannot shift
    </pre>
    
    <h3 id="Handling_panics">Handling panics</h3>
    
    HTML
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Thu Apr 11 20:22:45 GMT 2024
    - 211.6K bytes
    - Viewed (0)
  3. doc/asm.html

    even for assembly functions not called directly from Go.
    (The prototype will also let <code>go</code> <code>vet</code> check the argument references.)
    At the start of the function, the arguments are assumed
    to be initialized but the results are assumed uninitialized.
    If the results will hold live pointers during a call instruction,
    the function should start by zeroing the results and then
    HTML
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Tue Nov 28 19:15:27 GMT 2023
    - 36.3K bytes
    - Viewed (0)
  4. doc/go_spec.html

    _ = complex(1, 2&lt;&lt;s)               // illegal: 2 assumes floating-point type, cannot shift
    var rl = real(c64)                 // float32
    var im = imag(a)                   // float64
    const c = imag(b)                  // untyped constant -1.4
    _ = imag(3 &lt;&lt; s)                   // illegal: 3 assumes complex type, cannot shift
    </pre>
    
    <p>
    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