That’s a pretty complex method signature. So it’s...
# getting-started
d
That’s a pretty complex method signature. So it’s an extension function on
Observable<T>
, which means for in its scope
this
will be the
Observable
.
next
is a lambda that accepts a T and another lambda
more
.
more
accepts no parameters and returns nothing (Unit).
next
also returns Unit.