31 lines
725 B
Java
31 lines
725 B
Java
package com.google.android.gms.internal.measurement;
|
|
|
|
import java.util.NoSuchElementException;
|
|
|
|
/* loaded from: classes.dex */
|
|
final class zztf extends zzth {
|
|
private int a = 0;
|
|
private final int b;
|
|
private final /* synthetic */ zzte c;
|
|
|
|
zztf(zzte zzteVar) {
|
|
this.c = zzteVar;
|
|
this.b = this.c.size();
|
|
}
|
|
|
|
@Override // java.util.Iterator
|
|
public final boolean hasNext() {
|
|
return this.a < this.b;
|
|
}
|
|
|
|
@Override // com.google.android.gms.internal.measurement.zztl
|
|
public final byte nextByte() {
|
|
int i = this.a;
|
|
if (i >= this.b) {
|
|
throw new NoSuchElementException();
|
|
}
|
|
this.a = i + 1;
|
|
return this.c.zzan(i);
|
|
}
|
|
}
|