type iter.Seq2

8 uses

	iter (current package)
		iter.go#L209: type Seq2[K, V any] func(yield func(K, V) bool)
		iter.go#L356: func Pull2[K, V any](seq Seq2[K, V]) (next func() (K, V, bool), stop func()) {

	maps
		iter.go#L12: func All[Map ~map[K]V, K comparable, V any](m Map) iter.Seq2[K, V] {
		iter.go#L50: func Insert[Map ~map[K]V, K comparable, V any](m Map, seq iter.Seq2[K, V]) {
		iter.go#L58: func Collect[K comparable, V any](seq iter.Seq2[K, V]) map[K]V {

	reflect
		iter.go#L124: func (v Value) Seq2() iter.Seq2[Value, Value] {

	slices
		iter.go#L14: func All[Slice ~[]E, E any](s Slice) iter.Seq2[int, E] {
		iter.go#L26: func Backward[Slice ~[]E, E any](s Slice) iter.Seq2[int, E] {