Which operator should I use? #3112
Unanswered
wangshun1121
asked this question in
Q&A
Replies: 1 comment
-
How about this: ch_a = Channel.of('a', 'b')
ch_b = Channel.of(1, 2, 3)
// one way
ch_a.collect().combine(ch_b).view()
// or the other
ch_b.collect().combine(ch_a).view() |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I wonder if there's an operator that can:
Input channel:
then I wonder if there's an operator:
with output:
or other parameter such as:
with output:
Beta Was this translation helpful? Give feedback.
All reactions