package d0.t; import d0.z.d.g0.a; import java.util.Iterator; /* compiled from: Iterators.kt */ public abstract class c0 implements Iterator, a { @Override // java.util.Iterator public final Integer next() { return Integer.valueOf(nextInt()); } public abstract int nextInt(); @Override // java.util.Iterator public void remove() { throw new UnsupportedOperationException("Operation is not supported for read-only collection"); } }