29 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			Java
		
	
	
	
	
	
			
		
		
	
	
			29 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			Java
		
	
	
	
	
	
| package kotlin.collections;
 | |
| 
 | |
| import java.util.Iterator;
 | |
| import kotlin.Metadata;
 | |
| import kotlin.jvm.internal.markers.KMappedMarker;
 | |
| 
 | |
| /* compiled from: PrimitiveIterators.kt */
 | |
| @Metadata(d1 = {"\u0000\u0010\n\u0002\u0018\u0002\n\u0002\u0010(\n\u0002\u0010\u000b\n\u0002\b\u0005\b&\u0018\u00002\b\u0012\u0004\u0012\u00020\u00020\u0001B\u0005¢\u0006\u0002\u0010\u0003J\u000e\u0010\u0004\u001a\u00020\u0002H\u0086\u0002¢\u0006\u0002\u0010\u0005J\b\u0010\u0006\u001a\u00020\u0002H&¨\u0006\u0007"}, d2 = {"Lkotlin/collections/BooleanIterator;", "", "", "()V", "next", "()Ljava/lang/Boolean;", "nextBoolean", "kotlin-stdlib"}, k = 1, mv = {1, 8, 0}, xi = 48)
 | |
| /* loaded from: classes.dex */
 | |
| public abstract class BooleanIterator implements Iterator<Boolean>, KMappedMarker {
 | |
|     public abstract boolean nextBoolean();
 | |
| 
 | |
|     @Override // java.util.Iterator
 | |
|     public void remove() {
 | |
|         throw new UnsupportedOperationException("Operation is not supported for read-only collection");
 | |
|     }
 | |
| 
 | |
|     @Override // java.util.Iterator
 | |
|     public /* bridge */ /* synthetic */ Boolean next() {
 | |
|         return Boolean.valueOf(nextBoolean());
 | |
|     }
 | |
| 
 | |
|     /* JADX WARN: Can't rename method to resolve collision */
 | |
|     @Override // java.util.Iterator
 | |
|     public final Boolean next() {
 | |
|         return Boolean.valueOf(nextBoolean());
 | |
|     }
 | |
| }
 |