Files
rr3-apk/decompiled/sources/androidx/collection/LongLongPair.java
Daniel Elliott f9d20bb3fc Add decompiled APK source code (JADX)
- 28,932 files
- Full Java source code
- Smali files
- Resources

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
2026-02-18 14:52:23 -08:00

45 lines
1017 B
Java

package androidx.collection;
/* loaded from: classes.dex */
public final class LongLongPair {
private final long first;
private final long second;
public final long getFirst() {
return this.first;
}
public final long getSecond() {
return this.second;
}
public LongLongPair(long j, long j2) {
this.first = j;
this.second = j2;
}
public final long component1() {
return getFirst();
}
public final long component2() {
return getSecond();
}
public boolean equals(Object obj) {
if (!(obj instanceof LongLongPair)) {
return false;
}
LongLongPair longLongPair = (LongLongPair) obj;
return longLongPair.first == this.first && longLongPair.second == this.second;
}
public int hashCode() {
return Long.hashCode(this.first) ^ Long.hashCode(this.second);
}
public String toString() {
return '(' + this.first + ", " + this.second + ')';
}
}