Skip to content

Instantly share code, notes, and snippets.

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 bastionkid/3afad91c4ce50cce81331bd28e1422d3 to your computer and use it in GitHub Desktop.
Save bastionkid/3afad91c4ce50cce81331bd28e1422d3 to your computer and use it in GitHub Desktop.
Decompiled Bytecode for IntProgressionIterator
// plain kotlin code
for (i in 0 until observers.size) {
observers[i].onStatusChange()
}
// decompiled bytecode of the above for loop
int i = 0;
for(int var5 = ((Scratch_2)this).observers.size(); i < var5; ++i) {
((Observer)((Scratch_2)this).observers.get(i)).onStatusChange();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment