- Added realracing3-community.apk (71.57 MB) - Removed 32-bit support (armeabi-v7a) - Only includes arm64-v8a libraries - Decompiled source code included - Added README-community.md with analysis
69 lines
1.6 KiB
Java
69 lines
1.6 KiB
Java
package com.google.android.gms.internal.ads;
|
|
|
|
import java.io.Serializable;
|
|
import java.util.Arrays;
|
|
|
|
/* loaded from: classes3.dex */
|
|
public final class zzgao implements Serializable {
|
|
private final int[] zza;
|
|
private final int zzb;
|
|
|
|
private zzgao(int[] iArr, int i, int i2) {
|
|
this.zza = iArr;
|
|
this.zzb = i2;
|
|
}
|
|
|
|
public static zzgao zzb(int[] iArr) {
|
|
int[] copyOf = Arrays.copyOf(iArr, iArr.length);
|
|
return new zzgao(copyOf, 0, copyOf.length);
|
|
}
|
|
|
|
public final boolean equals(Object obj) {
|
|
if (obj == this) {
|
|
return true;
|
|
}
|
|
if (!(obj instanceof zzgao)) {
|
|
return false;
|
|
}
|
|
zzgao zzgaoVar = (zzgao) obj;
|
|
if (this.zzb != zzgaoVar.zzb) {
|
|
return false;
|
|
}
|
|
for (int i = 0; i < this.zzb; i++) {
|
|
if (zza(i) != zzgaoVar.zza(i)) {
|
|
return false;
|
|
}
|
|
}
|
|
return true;
|
|
}
|
|
|
|
public final int hashCode() {
|
|
int i = 1;
|
|
for (int i2 = 0; i2 < this.zzb; i2++) {
|
|
i = (i * 31) + this.zza[i2];
|
|
}
|
|
return i;
|
|
}
|
|
|
|
public final String toString() {
|
|
int i = this.zzb;
|
|
if (i == 0) {
|
|
return "[]";
|
|
}
|
|
StringBuilder sb = new StringBuilder(i * 5);
|
|
sb.append('[');
|
|
sb.append(this.zza[0]);
|
|
for (int i2 = 1; i2 < this.zzb; i2++) {
|
|
sb.append(", ");
|
|
sb.append(this.zza[i2]);
|
|
}
|
|
sb.append(']');
|
|
return sb.toString();
|
|
}
|
|
|
|
public final int zza(int i) {
|
|
zzfun.zza(i, this.zzb, "index");
|
|
return this.zza[i];
|
|
}
|
|
}
|