iterators are driven by the caller calling `hasNex...
# getting-started
r
iterators are driven by the caller calling `hasNext()`/`next()` though, while observables emit
onNext()
without the caller doing anything (well, ignoring backpressure mechanisms)... so I'm not sure how I'd transform an existing callback into a
Sequence
...