14 lines
420 B
Java
14 lines
420 B
Java
package gnu.trove;
|
|
|
|
import java.io.Serializable;
|
|
|
|
/* loaded from: classes2.dex */
|
|
public interface TObjectHashingStrategy<T> extends Serializable, Equality<T> {
|
|
public static final TObjectHashingStrategy IDENTITY = new TObjectIdentityHashingStrategy();
|
|
public static final TObjectHashingStrategy CANONICAL = new TObjectCanonicalHashingStrategy();
|
|
|
|
int computeHashCode(T t);
|
|
|
|
boolean equals(T t, T t2);
|
|
}
|