Back
Close

Extract Data from a Stream

Harinath
6,794 views

Extract data from an object using peek() and map() methods

Let us start with a simple example

Square each element in the above stream and print

The map() operation in the stream applies the given lambda function(i - > i * i) as an argument on the elements of the stream. The count method returns the value 5. To Print the square value of each value in the stream, we used intermediate method peek().

Create your playground on Tech.io
This playground was created on Tech.io, our hands-on, knowledge-sharing platform for developers.
Go to tech.io