like `A.skipUntil(B.ignoreElements().concatWith(ju...
# rx
j
like
A.skipUntil(B.ignoreElements().concatWith(just(Unit)))
m
nice .. why we need concat with
just(Unit)
j
you have to emit an item for skipUntil to trigger
m
aha, so that way you convert the terminal event to an emission
k
concatWith
will trigger unit asa B complete
u
yea, this is cleaner, but I'm glad you can manually do mine if neede