Skip to content

Commit 319ad8e

Browse files
n
Change-Id: Id83b1dd6618a49e833efcaab800d8429945203d1
1 parent f476982 commit 319ad8e

File tree

4 files changed

+3
-5
lines changed

4 files changed

+3
-5
lines changed

api/next/66056.txt

+2
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,4 @@
1+
pkg reflect, method (Value) Seq() iter.Seq[Value] #66056
2+
pkg reflect, method (Value) Seq2() iter.Seq2[Value, Value] #66056
13
pkg reflect, type Type interface, CanSeq() bool #66056
24
pkg reflect, type Type interface, CanSeq2() bool #66056

src/go/build/deps_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -197,7 +197,7 @@ var depsRules = `
197197
198198
# FMT is OS (which includes string routines) plus reflect and fmt.
199199
# It does not include package log, which should be avoided in core packages.
200-
arena, strconv, unicode, iter
200+
arena, strconv, unicode
201201
< reflect;
202202
203203
os, reflect

src/reflect/iter.go

-2
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@
22
// Use of this source code is governed by a BSD-style
33
// license that can be found in the LICENSE file.
44

5-
//go:build go1.23
6-
75
package reflect
86

97
import "iter"

src/reflect/iter_test.go

-2
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@
22
// Use of this source code is governed by a BSD-style
33
// license that can be found in the LICENSE file.
44

5-
//go:build goexperiment.rangefunc
6-
75
package reflect_test
86

97
import (

0 commit comments

Comments
 (0)