- 28,932 files - Full Java source code - Smali files - Resources Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
45 lines
1017 B
Java
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 + ')';
|
|
}
|
|
}
|