0 votes
in Scala Constructs by

Explain Streams in Scala.

1 Answer

0 votes
by

In simple words, we define Stream as a Lazy list which evaluates the elements only when it needs to. This sort of lazy computation enhances the Performance of the program.

...