Documentation
¶
Index ¶
- func Lookup[K comparable, V1, V2 any](a iter.Seq2[K, V1], b iter.Seq2[K, V2]) iter.Seq2[K, Tuple[V1, V2]]
- func Merge[K cmp.Ordered, V any](a, b iter.Seq2[K, V], cs ...iter.Seq2[K, V]) iter.Seq2[K, V]
- func Project[K, V, Ko, Vo any](a iter.Seq2[K, V], prj func(K, V) (Ko, Vo)) iter.Seq2[Ko, Vo]
- type Tuple
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func Lookup ¶ added in v0.2.0
func Lookup[K comparable, V1, V2 any](a iter.Seq2[K, V1], b iter.Seq2[K, V2]) iter.Seq2[K, Tuple[V1, V2]]
Lookup performs left outer join of a and b sequences using hash algorithm. Output order of the a sequence is preserved.
Types ¶
Click to show internal directories.
Click to hide internal directories.