Sequence
-based implementation of combining algorithms in addition to variadic ones
#226
Labels
Sequence
-based implementation of combining algorithms in addition to variadic ones
#226
Existing implementations of
combineLatest
,zip
,merge
are great when the total number of sequences is known at compile time (2 or 3 without variadic generics). In some scenarios, these sequences have same element types, but the total number of sequences is computed at run time. Existing implementations won't work here, and I think the library would benefit from implementations that take aSequence
(or some other container protocol) ofAsyncSequence
s that have the same element type to cover these use cases.The text was updated successfully, but these errors were encountered: