Skip to content

Instantly share code, notes, and snippets.

@pjagielski
Created August 5, 2018 21:33
Show Gist options
  • Save pjagielski/98859d980f577bea2539b022d9e562cc to your computer and use it in GitHub Desktop.
Save pjagielski/98859d980f577bea2539b022d9e562cc to your computer and use it in GitHub Desktop.
(->> lst
(map op1)
(map op2)
(filter p1)
first)
lst.stream()
.map(op1)
.map(op2)
.filter(p1)
.findFirst()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment