Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for reducer (0.21 sec)

  1. doc/go1.22.html

    <p><!-- CL 543255 -->
      The runtime now keeps type-based garbage collection metadata nearer to each
      heap object, improving the CPU performance (latency or throughput) of Go programs
      by 1&ndash;3%.
      This change also reduces the memory overhead of the majority Go programs by
      approximately 1% by deduplicating redundant metadata.
      Some programs may see a smaller improvement because this change adjusts the size
    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

    for key, val = range m {
    	h(key, val)
    }
    // key == last map key encountered in iteration
    // val == map[key]
    
    var ch chan Work = producer()
    for w := range ch {
    	doWork(w)
    }
    
    // empty a channel
    for range ch {}
    </pre>
    
    
    <h3 id="Go_statements">Go statements</h3>
    
    <p>
    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

    </pre>
    
    <p>
    the variable <code>s</code> of type <code>Slice</code> must be assignable to
    the function parameter type <code>S</code> for the program to be valid.
    To reduce complexity, type inference ignores the directionality of assignments,
    so the type relationship between <code>Slice</code> and <code>S</code> can be
    expressed via the (symmetric) type equation <code>Slice ≡<sub>A</sub> S</code>
    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