Skip to content

KubraBoduroglu/java-streams-youtube

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 

Repository files navigation

NOTES ABOUT JAVA STREAMS

  • Imperative programming to declarative programming
  • Java Streams works really well with the Collections, its made for Collections.
  • What Streams allows us to do is to simply ask what we want form our collection.

Filter

  • Filter takes Predicate.
  • Predicate: Simply returns true or false. And this is what you want to keep from original list.
  • After performing filter operation, now we have to collect the result back into a list.

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Java 100.0%