November 24, 2018

Using java streams to make your java code lazy

What do I mean by making your code lazy? Your code won’t do a single operation, until, output generated by it’s execution is not consumed by some other operation. It would look like the code is doing some action, but in reality it is not doing anything. Let’s dig into this by using an example […]

Read more