Skip to content

Instantly share code, notes, and snippets.

@kunals201
Created March 16, 2018 10:55
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/3ad042da4241395f701a0538893d2452 to your computer and use it in GitHub Desktop.
Save kunals201/3ad042da4241395f701a0538893d2452 to your computer and use it in GitHub Desktop.
limit method example
public class Limit {
public static void main(String[] args) {
List<Integer> numbers = Arrays.asList(11,22,33,44,55,66,77,88,99);
numbers.stream()
.limit(4)
.forEach(System.out::println);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment