1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
package moe.nea.ultranotifier.util class IdentityCharacteristics<T>(val value: T) { override fun hashCode(): Int { return System.identityHashCode(value) } override fun equals(other: Any?): Boolean { return value === other } override fun toString(): String { return "IdentityCharacteristics($value)" } }