Skip to content

Files

Latest commit

 

History

History

stream-api

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 

References

Intermediate Operations (10)

  • filter()

  • find()

  • limit()

  • anyMatch()

  • map()

  • flatMap()

  • sorted()

  • distinct()

  • skip()

  • peek() => can be used for logging purpose.

Terminal Operations

  • foreach()
  • max()
  • min()
  • reduce()
  • collect()
  • count()
  • summaryStatistics()

Git Command

  • git reset HEAD -- To unstage files
  • git rm --cache dummy.txt To remove the file from the repo and not delete it from the local file system.
  • git rm dummy.txt To remove file from the local repo as well as from local file system.

=======

Plugins

  • Java Stream Dubugger