package
Version:
v0.7.2
Opens a new window with list of versions in this module.
Published: Nov 20, 2025
License: Apache-2.0, MIT
Opens a new window with license information.
Imports: 1
Opens a new window with list of imports.
Imported by: 2
Opens a new window with list of known importers.
Documentation
¶
-
func Concat[V any](seqs ...iter.Seq[V]) iter.Seq[V]
-
func Concat2[K, V any](seqs ...iter.Seq2[K, V]) iter.Seq2[K, V]
-
func Map[In, Out any](f func(In) Out, seq iter.Seq[In]) iter.Seq[Out]
-
func Map2[KIn, VIn, KOut, VOut any](f func(KIn, VIn) (KOut, VOut), seq iter.Seq2[KIn, VIn]) iter.Seq2[KOut, VOut]
Concat returns an iterator over the concatenation of the sequences.
Concat2 returns an iterator over the concatenation of the sequences.
Map returns an iterator over f applied to seq.
func Map2[KIn, VIn, KOut, VOut any](f func(KIn, VIn) (KOut, VOut), seq iter.Seq2[KIn, VIn]) iter.Seq2[KOut, VOut]
Map2 returns an iterator over f applied to seq.
Source Files
¶
Click to show internal directories.
Click to hide internal directories.