Skip to content

Instantly share code, notes, and snippets.

@ppajdek
Last active June 24, 2020 11:41
Show Gist options
  • Save ppajdek/ed210bfff84f75d510ebcd7737353ff9 to your computer and use it in GitHub Desktop.
Save ppajdek/ed210bfff84f75d510ebcd7737353ff9 to your computer and use it in GitHub Desktop.
void immutable() {
List<Integer> ints = List.of(1, 2, 3, 4, 5, 6);
List<Integer> evenInts = extractEvenInts(ints);
System.out.println(evenInts); // prints -> [2, 4, 6]
System.out.println(ints); // prints -> [1, 2, 3, 4, 5, 6]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment