File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -4857,7 +4857,7 @@ <h4 id="Operator_precedence">Operator precedence</h4>
48574857x <= f() // x <= f()
48584858^a >> b // (^a) > > b
48594859f() || g() // f() || g()
4860- x == y+1 && <-chanInt > 0 // (x == (y+1)) && ((<-chanInt) > 0)
4860+ x == y+1 && <-chanInt > 0 // (x == (y+1)) && ((<-chanInt) > 0)
48614861</ pre >
48624862
48634863
@@ -6867,7 +6867,7 @@ <h4 id="For_range">For statements with <code>range</code> clause</h4>
68676867}
68686868
68696869func (t *Tree[K, V]) walk(yield func(key K, val V) bool) bool {
6870- return t == nil || t.left.walk(yield) && yield(t.key, t.value) && t.right.walk(yield)
6870+ return t == nil || t.left.walk(yield) && yield(t.key, t.value) && t.right.walk(yield)
68716871}
68726872
68736873func (t *Tree[K, V]) Walk(yield func(key K, val V) bool) {
You can’t perform that action at this time.
0 commit comments