Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for impls (0.15 sec)

  1. doc/go_mem.html

    can exhibit non-sequentially consistent executions.
    In particular, note that a read <i>r</i> may observe the value written by any write <i>w</i>
    that executes concurrently with <i>r</i>.
    Even if this occurs, it does not imply that reads happening after <i>r</i>
    will observe writes that happened before <i>w</i>.
    </p>
    
    <p>
    In this program:
    </p>
    
    <pre>
    var a, b int
    
    func f() {
    	a = 1
    	b = 2
    }
    
    HTML
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Mon Mar 04 15:54:42 GMT 2024
    - 26.6K bytes
    - Viewed (0)
Back to top