Yes. You actual code would be more complex. I'd ac...
# coroutines
e
Yes. You actual code would be more complex. I'd actually recommend using Kotlin's
for
convention. You can start by defining an extension
operator iterator
on observable:
Copy code
operator fun <V> Observable<V>.iterator() = SubscribeIterator<V>(this)