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: 4 months 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: 2025-01-28T00:38:40.789Z (6 months 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
# 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