0 votes
in JAVA by
What distinguishes map from flatMap stream operation?

1 Answer

0 votes
by

While flatMap Stream delivers zero or more output values per input value, Map gives one output value for every input value.

...