blob: 713242c041b2a2de3b7440c86bf6047d9bb60848 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
/*
* SPDX-FileCopyrightText: 2023 Linnea Gräf <nea@nea.moe>
* SPDX-FileCopyrightText: 2024 Linnea Gräf <nea@nea.moe>
*
* SPDX-License-Identifier: GPL-3.0-or-later
*/
package moe.nea.firmament.util
class IdentityCharacteristics<T>(val value: T) {
override fun equals(other: Any?): Boolean {
if (this === other) return true
if (other !is IdentityCharacteristics<*>) return false
return value === other.value
}
override fun hashCode(): Int {
return System.identityHashCode(value)
}
}
|