An open API service indexing awesome lists of open source software.

https://github.com/nileshkhaire/java-streams

Collection of Java 8 streams examples (snippets) . Awesome list of java stream examples
https://github.com/nileshkhaire/java-streams

List: java-streams

awesome-list java java8 java8-lambda-expression javastreams lambda snippets

Last synced: 22 days ago
JSON representation

Collection of Java 8 streams examples (snippets) . Awesome list of java stream examples

Awesome Lists containing this project

README

          

# java-streams
Collection of Java 8 streams examples (snippets) grouped by java data structures

- [By Data Structure](#by-data-structure)
- [Map](#map)
- [List](#list)
- [Set](#set)
- [Array](#array)

- [Resources](#resources)
- [Blogs](#blogs)
- [Websites](#websites)

## By Data Structure

### Map
### List
#### Find first element in the list
```java
Arrays.asList("hi", "hey", "hello")
.stream()
.findFirst()
.ifPresent(System.out::println);
```
Output :
```
hi
```
### Set
### Array

## Resources

### Blogs
### Websites

## Contributing

Contributions are welcome :) Please create a pull request.