Skip to content

Instantly share code, notes, and snippets.

@jshvarts
Created June 27, 2017 05:20
Show Gist options
  • Save jshvarts/83e078f9e2e4c07243777924d7c7cb87 to your computer and use it in GitHub Desktop.
Save jshvarts/83e078f9e2e4c07243777924d7c7cb87 to your computer and use it in GitHub Desktop.
forEach decompiled contains Iterator
Iterable $receiver$iv = (Iterable)(new IntRange(0, 10000000));
Iterator var6 = $receiver$iv.iterator();
boolean var10000;
int i;
while(var6.hasNext()) {
i = ((IntIterator)var6).nextInt();
if(i % 2 == 0) {
var10000 = true;
} else {
var10000 = false;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment