Skip to content

Instantly share code, notes, and snippets.

@mutkuensert
Created February 20, 2025 15:19
Show Gist options
  • Save mutkuensert/d96ed9c3dfa4d52d426b1498e4fbcb67 to your computer and use it in GitHub Desktop.
Save mutkuensert/d96ed9c3dfa4d52d426b1498e4fbcb67 to your computer and use it in GitHub Desktop.
fun <T : Any> T.equalsAtLeastOne(arg1: T? = null, arg2: T? = null, arg3: T? = null): Boolean {
return this == arg1 || this == arg2 || this == arg3
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment