Skip to content

Instantly share code, notes, and snippets.

@kunals201
Last active March 27, 2018 11:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kunals201/b9a7c5409315555a5ec2af7d3b57d16a to your computer and use it in GitHub Desktop.
Save kunals201/b9a7c5409315555a5ec2af7d3b57d16a to your computer and use it in GitHub Desktop.
example of IntStream iterate
public class IntStreamIterateExample {
public static void main(String[] args) {
IntStream.iterate(0, i -> i<5, i -> i+2 )
.forEach(System.out::println);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment