Skip to content

Instantly share code, notes, and snippets.

@markchristopherng
Created April 9, 2019 04:29
Show Gist options
  • Save markchristopherng/7b1f0e242c3854b7e9fb5a6903303503 to your computer and use it in GitHub Desktop.
Save markchristopherng/7b1f0e242c3854b7e9fb5a6903303503 to your computer and use it in GitHub Desktop.
class NonEqualWrapper<T>(var content: T?) {
override fun hashCode(): Int {
return content.hashCode()
}
override fun equals(other: Any?): Boolean {
return false
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment