Skip to content

Instantly share code, notes, and snippets.

@motlin
Last active May 15, 2018 21:57
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 motlin/c806f6e65d62df1bea23aace6014e7cd to your computer and use it in GitHub Desktop.
Save motlin/c806f6e65d62df1bea23aace6014e7cd to your computer and use it in GitHub Desktop.
public interface HashingStrategy<E>
{
int computeHashCode(E object);
boolean equals(E object1, E object2);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment