Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/aprendendo-programacao/functional-programming-with-java-streams-api
https://github.com/aprendendo-programacao/functional-programming-with-java-streams-api
java streams
Last synced: 10 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/aprendendo-programacao/functional-programming-with-java-streams-api
- Owner: Aprendendo-programacao
- Created: 2021-11-01T23:16:11.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2021-11-01T23:20:34.000Z (over 3 years ago)
- Last Synced: 2023-08-12T03:21:42.488Z (over 1 year ago)
- Topics: java, streams
- Language: Java
- Homepage: https://youtu.be/f5j1TaJlc0w
- Size: 53.7 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Java Streams API
https://amigoscode.com/p/java-streams
![cover](https://user-images.githubusercontent.com/40702606/137604079-5a73276f-a32a-4f03-adca-752f9a01adc2.png)# Course Description
Functional programming is becoming very popular and it focuses around pure functions. Functional applications avoid the shared state, and tend to be more concise and predictable than those using object-oriented code. In this course Nelson will teach you how to move away from imperative to declarative programming allowing you to write less code and focus on what is important when build applications.## List of topics for this course
- What is functional programming
- Stream API
- Transformations with Map
- Reduce
- Filter
- Collectors
- Statistics
- Grouping
- Parallel steams
- Exercises