type iter.Seq
34 uses
iter (current package)
iter.go#L223: type Seq[V any] func(yield func(V) bool)
iter.go#L261: func Pull[V any](seq Seq[V]) (next func() (V, bool), stop func()) {
bytes
iter.go#L18: func Lines(s []byte) iter.Seq[[]byte] {
iter.go#L36: func splitSeq(s, sep []byte, sepSave int) iter.Seq[[]byte] {
iter.go#L67: func SplitSeq(s, sep []byte) iter.Seq[[]byte] {
iter.go#L75: func SplitAfterSeq(s, sep []byte) iter.Seq[[]byte] {
iter.go#L83: func FieldsSeq(s []byte) iter.Seq[[]byte] {
iter.go#L116: func FieldsFuncSeq(s []byte, f func(rune) bool) iter.Seq[[]byte] {
crypto/x509
verify.go#L1103: func (pg *policyGraph) parents() iter.Seq[*policyGraphNode] {
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] {
type.go#L70: Methods() iter.Seq[Method]
type.go#L183: Fields() iter.Seq[StructField]
type.go#L224: Ins() iter.Seq[Type]
type.go#L254: Outs() iter.Seq[Type]
type.go#L960: func (t *rtype) Fields() iter.Seq[StructField] {
type.go#L973: func (t *rtype) Methods() iter.Seq[Method] {
type.go#L983: func (t *rtype) Ins() iter.Seq[Type] {
type.go#L996: func (t *rtype) Outs() iter.Seq[Type] {
slices
iter.go#L37: func Values[Slice ~[]E, E any](s Slice) iter.Seq[E] {
iter.go#L50: func AppendSeq[Slice ~[]E, E any](s Slice, seq iter.Seq[E]) Slice {
iter.go#L59: func Collect[E any](seq iter.Seq[E]) []E {
iter.go#L66: func Sorted[E cmp.Ordered](seq iter.Seq[E]) []E {
iter.go#L75: func SortedFunc[E any](seq iter.Seq[E], cmp func(E, E) int) []E {
iter.go#L86: func SortedStableFunc[E any](seq iter.Seq[E], cmp func(E, E) int) []E {
iter.go#L97: func Chunk[Slice ~[]E, E any](s Slice, n int) iter.Seq[Slice] {
strings
iter.go#L18: func Lines(s string) iter.Seq[string] {
iter.go#L36: func splitSeq(s, sep string, sepSave int) iter.Seq[string] {
iter.go#L67: func SplitSeq(s, sep string) iter.Seq[string] {
iter.go#L75: func SplitAfterSeq(s, sep string) iter.Seq[string] {
iter.go#L83: func FieldsSeq(s string) iter.Seq[string] {
iter.go#L116: func FieldsFuncSeq(s string, f func(rune) bool) iter.Seq[string] {
 |
The pages are generated with Golds v0.8.4. (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. |