Rabbit-R1/android (non root)/java/sources/com/google/common/collect/PeekingIterator.java

20 lines
454 B
Java
Raw Permalink Normal View History

2024-05-21 21:08:36 +00:00
package com.google.common.collect;
import com.google.errorprone.annotations.DoNotMock;
import java.util.Iterator;
@DoNotMock("Use Iterators.peekingIterator")
@ElementTypesAreNonnullByDefault
/* loaded from: classes3.dex */
public interface PeekingIterator<E> extends Iterator<E> {
@Override // java.util.Iterator
@ParametricNullness
E next();
@ParametricNullness
E peek();
@Override // java.util.Iterator
void remove();
}