Talk:Atomic updates: Difference between revisions

Content added Content deleted
(+ note on Go)
 
Line 32: Line 32:
// Create a concrete object implementing the bucketList
// Create a concrete object implementing the bucketList
interface.
interface.
bl := newRwList(20, originalTotal, nUpdaters)</lang>
bl := newRwList(10, originalTotal, nUpdaters)</lang>


And for the third:
And for the third:
Line 48: Line 48:
// Create a concrete object implementing the bucketList
// Create a concrete object implementing the bucketList
interface.
interface.
bl := newLfList(20, originalTotal, nUpdaters)</lang>
bl := newLfList(10, originalTotal, nUpdaters)</lang>


The first Go solution compiles as it is, but I don't see any printing output.
The first Go solution compiles as it is, but I don't see any printing output.