tangled
alpha
login
or
join now
joh.dev
/
leftright
1
fork
atom
A map using a lock-free concurrency using left-right algo, written in Go
1
fork
atom
overview
issues
pulls
pipelines
k, v := i, i
authored by
Johannes Kohnen
and committed by
joh.dev
10 months ago
b5861ff5
cd6a3e03
+1
1 changed file
expand all
collapse all
unified
split
example_test.go2
+1
example_test.go2
···
9
9
m := New[int, int]()
10
10
11
11
for i := 0; i < 10; i++ {
12
12
+
k, v := i, i
12
13
m.Set(k, v)
13
14
}
14
15