1
0
mirror of https://github.com/golang/go synced 2024-11-11 17:21:38 -07:00
Change-Id: Id83b1dd6618a49e833efcaab800d8429945203d1
This commit is contained in:
qiulaidongfeng 2024-05-08 06:49:15 +08:00
parent f4769823d1
commit 319ad8ea7c
4 changed files with 3 additions and 5 deletions

View File

@ -1,2 +1,4 @@
pkg reflect, method (Value) Seq() iter.Seq[Value] #66056
pkg reflect, method (Value) Seq2() iter.Seq2[Value, Value] #66056
pkg reflect, type Type interface, CanSeq() bool #66056
pkg reflect, type Type interface, CanSeq2() bool #66056

View File

@ -197,7 +197,7 @@ var depsRules = `
# FMT is OS (which includes string routines) plus reflect and fmt.
# It does not include package log, which should be avoided in core packages.
arena, strconv, unicode, iter
arena, strconv, unicode
< reflect;
os, reflect

View File

@ -2,8 +2,6 @@
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
//go:build go1.23
package reflect
import "iter"

View File

@ -2,8 +2,6 @@
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
//go:build goexperiment.rangefunc
package reflect_test
import (