Skip to content

Commit 936d9f4

Browse files
committed
Updated README
1 parent d935012 commit 936d9f4

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

README.md

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

73-
What is Stream?
73+
**What is Stream?**
7474

7575
Stream represents a sequence of objects from a source, which supports aggregate operations.
7676

7777
Following are the characteristics of a Stream:
7878

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.
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.
8080

81-
* Source − Stream takes Collections, Arrays, or I/O resources as input source.
81+
* **Source** − Stream takes Collections, Arrays, or I/O resources as input source.
8282

83-
* Aggregate operations − Stream supports aggregate operations like filter, map, limit, reduce, find, and so on.
83+
* **Aggregate operations** − Stream supports aggregate operations like filter, map, limit, reduce, find, and so on.
8484

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.
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.
8686

87-
* Automatic iterations − Stream operations do the iterations internally over the source elements provided, in contrast to Collections where explicit iteration is required.
87+
* **Automatic iterations** − Stream operations do the iterations internally over the source elements provided, in contrast to Collections where explicit iteration is required.
8888

8989
### Built With
9090

0 commit comments

Comments
 (0)