mirror of https://github.com/golang/go.git
parent
f4769823d1
commit
319ad8ea7c
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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"
|
||||
|
|
|
|||
|
|
@ -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 (
|
||||
|
|
|
|||
Loading…
Reference in New Issue