Skip to content

Instantly share code, notes, and snippets.

@ppajdek
Created June 24, 2020 11:40
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 ppajdek/5995bd73104320edb9b6db3a70390ff0 to your computer and use it in GitHub Desktop.
Save ppajdek/5995bd73104320edb9b6db3a70390ff0 to your computer and use it in GitHub Desktop.
void mutable() {
List<Integer> ints = mutableListOf(1, 2, 3, 4, 5, 6);
removeOddInts(ints);
System.out.println(ints); // prints -> [2, 4, 6]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment