Skip to content

Commit d935012

Browse files
committed
Updated README
1 parent 9a6e5d6 commit d935012

1 file changed

Lines changed: 11 additions & 8 deletions

File tree

README.md

Lines changed: 11 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -70,18 +70,21 @@
7070
<!-- ABOUT THE PROJECT -->
7171
## About The Project
7272

73-
[![Product Name Screen Shot][product-screenshot]](https://example.com)
73+
What is Stream?
7474

75-
There are many great README templates available on GitHub, however, I didn't find one that really suit my needs so I created this enhanced one. I want to create a README template so amazing that it'll be the last one you ever need.
75+
Stream represents a sequence of objects from a source, which supports aggregate operations.
7676

77-
Here's why:
78-
* Your time should be focused on creating something amazing. A project that solves a problem and helps others
79-
* You shouldn't be doing the same tasks over and over like creating a README from scratch
80-
* You should element DRY principles to the rest of your life :smile:
77+
Following are the characteristics of a Stream:
8178

82-
Of course, no one template will serve all projects since your needs may be different. So I'll be adding more in the near future. You may also suggest changes by forking this repo and creating a pull request or opening an issue.
79+
* Sequence of elements − A stream provides a set of elements of specific type in a sequential manner. A stream gets/computes elements on demand. It never stores the elements.
8380

84-
A list of commonly used resources that I find helpful are listed in the acknowledgements.
81+
* Source − Stream takes Collections, Arrays, or I/O resources as input source.
82+
83+
* Aggregate operations − Stream supports aggregate operations like filter, map, limit, reduce, find, and so on.
84+
85+
* Pipelining − Most of the stream operations return stream itself so that their result can be pipelined. These operations are called intermediate operations and their function is to take input, process them, and return output to the target. toList() and toSet() methods are terminals operation which is normally present at the end of the pipelining operation to mark the end of the stream.
86+
87+
* Automatic iterations − Stream operations do the iterations internally over the source elements provided, in contrast to Collections where explicit iteration is required.
8588

8689
### Built With
8790

0 commit comments

Comments
 (0)