Skip to content

Instantly share code, notes, and snippets.

@hussachai
Created November 7, 2015 05:55
Show Gist options
  • Save hussachai/100adbac4547cfceed42 to your computer and use it in GitHub Desktop.
Save hussachai/100adbac4547cfceed42 to your computer and use it in GitHub Desktop.
//Java 8 - Stream
pets.stream()
.filter(pet -> pet.getBirthdate().isBefore(LocalDate.of(2013, Month.JANUARY, 1)))
.filter(pet -> pet.getWeight() > 50)
.collect(toList())
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment