ADD week 5
This commit is contained in:
		| @@ -0,0 +1,67 @@ | ||||
| package kotlin.collections; | ||||
|  | ||||
| import java.util.RandomAccess; | ||||
| import kotlin.Metadata; | ||||
|  | ||||
| /* compiled from: _ArraysJvm.kt */ | ||||
| @Metadata(d1 = {"\u0000\u001f\n\u0000\n\u0002\u0018\u0002\n\u0002\u0010\u000b\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0000\n\u0002\u0010\b\n\u0002\b\u000b*\u0001\u0000\b\n\u0018\u00002\b\u0012\u0004\u0012\u00020\u00020\u00012\u00060\u0003j\u0002`\u0004J\u0011\u0010\t\u001a\u00020\u00022\u0006\u0010\n\u001a\u00020\u0002H\u0096\u0002J\u0016\u0010\u000b\u001a\u00020\u00022\u0006\u0010\f\u001a\u00020\u0006H\u0096\u0002¢\u0006\u0002\u0010\rJ\u0010\u0010\u000e\u001a\u00020\u00062\u0006\u0010\n\u001a\u00020\u0002H\u0016J\b\u0010\u000f\u001a\u00020\u0002H\u0016J\u0010\u0010\u0010\u001a\u00020\u00062\u0006\u0010\n\u001a\u00020\u0002H\u0016R\u0014\u0010\u0005\u001a\u00020\u00068VX\u0096\u0004¢\u0006\u0006\u001a\u0004\b\u0007\u0010\b¨\u0006\u0011"}, d2 = {"kotlin/collections/ArraysKt___ArraysJvmKt$asList$7", "Lkotlin/collections/AbstractList;", "", "Ljava/util/RandomAccess;", "Lkotlin/collections/RandomAccess;", "size", "", "getSize", "()I", "contains", "element", "get", "index", "(I)Ljava/lang/Boolean;", "indexOf", "isEmpty", "lastIndexOf", "kotlin-stdlib"}, k = 1, mv = {1, 8, 0}, xi = 48) | ||||
| /* loaded from: classes.dex */ | ||||
| public final class ArraysKt___ArraysJvmKt$asList$7 extends AbstractList<Boolean> implements RandomAccess { | ||||
|     final /* synthetic */ boolean[] $this_asList; | ||||
|  | ||||
|     ArraysKt___ArraysJvmKt$asList$7(boolean[] zArr) { | ||||
|         this.$this_asList = zArr; | ||||
|     } | ||||
|  | ||||
|     @Override // kotlin.collections.AbstractCollection, java.util.Collection | ||||
|     public final /* bridge */ boolean contains(Object obj) { | ||||
|         if (obj instanceof Boolean) { | ||||
|             return contains(((Boolean) obj).booleanValue()); | ||||
|         } | ||||
|         return false; | ||||
|     } | ||||
|  | ||||
|     @Override // kotlin.collections.AbstractList, java.util.List | ||||
|     public final /* bridge */ int indexOf(Object obj) { | ||||
|         if (obj instanceof Boolean) { | ||||
|             return indexOf(((Boolean) obj).booleanValue()); | ||||
|         } | ||||
|         return -1; | ||||
|     } | ||||
|  | ||||
|     @Override // kotlin.collections.AbstractList, java.util.List | ||||
|     public final /* bridge */ int lastIndexOf(Object obj) { | ||||
|         if (obj instanceof Boolean) { | ||||
|             return lastIndexOf(((Boolean) obj).booleanValue()); | ||||
|         } | ||||
|         return -1; | ||||
|     } | ||||
|  | ||||
|     @Override // kotlin.collections.AbstractList, kotlin.collections.AbstractCollection | ||||
|     /* renamed from: getSize */ | ||||
|     public int get_size() { | ||||
|         return this.$this_asList.length; | ||||
|     } | ||||
|  | ||||
|     @Override // kotlin.collections.AbstractCollection, java.util.Collection | ||||
|     public boolean isEmpty() { | ||||
|         return this.$this_asList.length == 0; | ||||
|     } | ||||
|  | ||||
|     public boolean contains(boolean element) { | ||||
|         return ArraysKt.contains(this.$this_asList, element); | ||||
|     } | ||||
|  | ||||
|     @Override // kotlin.collections.AbstractList, java.util.List | ||||
|     public Boolean get(int index) { | ||||
|         return Boolean.valueOf(this.$this_asList[index]); | ||||
|     } | ||||
|  | ||||
|     public int indexOf(boolean element) { | ||||
|         return ArraysKt.indexOf(this.$this_asList, element); | ||||
|     } | ||||
|  | ||||
|     public int lastIndexOf(boolean element) { | ||||
|         return ArraysKt.lastIndexOf(this.$this_asList, element); | ||||
|     } | ||||
| } | ||||
		Reference in New Issue
	
	Block a user