The take()
operator for Flow
"takes" the first N emitted items, where N is the
value that you pass to take()
. Those first items are emitted downstream; everything
after that is ignored. So, here, we take and print the first four items, skipping
the remaining six.
You can learn more about this in:
Tags: