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] {
 |
The pages are generated with Golds v0.7.6. (GOOS=linux GOARCH=amd64)
Golds is a Go 101 project developed by Tapir Liu.
PR and bug reports are welcome and can be submitted to the issue list.
Please follow @zigo_101 (reachable from the left QR code) to get the latest news of Golds. |