type iter.Seq

13 uses

	iter (current package)
		iter.go#L203: type Seq[V any] func(yield func(V) bool)
		iter.go#L241: func Pull[V any](seq Seq[V]) (next func() (V, bool), stop func()) {

	maps
		iter.go#L25: func Keys[Map ~map[K]V, K comparable, V any](m Map) iter.Seq[K] {
		iter.go#L38: func Values[Map ~map[K]V, K comparable, V any](m Map) iter.Seq[V] {

	reflect
		iter.go#L13: 	uintptr, N int64 | uint64](num N, t Type) iter.Seq[Value] {
		iter.go#L38: func (v Value) Seq() iter.Seq[Value] {

	slices
		iter.go#L37: func Values[Slice ~[]E, E any](s Slice) iter.Seq[E] {
		iter.go#L49: func AppendSeq[Slice ~[]E, E any](s Slice, seq iter.Seq[E]) Slice {
		iter.go#L57: func Collect[E any](seq iter.Seq[E]) []E {
		iter.go#L63: func Sorted[E cmp.Ordered](seq iter.Seq[E]) []E {
		iter.go#L71: func SortedFunc[E any](seq iter.Seq[E], cmp func(E, E) int) []E {
		iter.go#L81: func SortedStableFunc[E any](seq iter.Seq[E], cmp func(E, E) int) []E {
		iter.go#L92: func Chunk[Slice ~[]E, E any](s Slice, n int) iter.Seq[Slice] {