Replies: 1 comment
-
|
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
gnxsf
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.
-
Is it possible to manipulate a channel within
tap
so that my manipulation doesn't affect the source channel? For example, I'd like to create one channel with elements 0 and 1 from a list, and another channel with elements 0 and 2. Usingmap
ahead oftap
affects the source channel such that I no longer have access to element 2:Instead, I'd like to be able to manipulate the channel "within"
tap
so that it doesn't affect the source channel. Something like this:Any suggestions on how I can accomplish this?
Beta Was this translation helpful? Give feedback.
All reactions