Skip to content

Instantly share code, notes, and snippets.

@NoNews
Last active May 12, 2020 12:12
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 NoNews/ea70bd367bb485ab88b051d7b4d293f8 to your computer and use it in GitHub Desktop.
Save NoNews/ea70bd367bb485ab88b051d7b4d293f8 to your computer and use it in GitHub Desktop.
int indexOf(Object key, int hash) {
final int N = mSize;
// Important fast case: if nothing is in here, nothing to look for.
if (N == 0) {
return ~0; // NOT 0 will return -1
}
...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment