ADD week 5
This commit is contained in:
		| @@ -0,0 +1,53 @@ | ||||
| package kotlin.random; | ||||
|  | ||||
| import kotlin.Metadata; | ||||
| import kotlin.jvm.internal.Intrinsics; | ||||
|  | ||||
| /* compiled from: PlatformRandom.kt */ | ||||
| @Metadata(d1 = {"\u0000>\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0002\b\u0002\n\u0002\u0018\u0002\n\u0002\b\u0003\n\u0002\u0010\b\n\u0002\b\u0002\n\u0002\u0010\u000b\n\u0000\n\u0002\u0010\u0012\n\u0002\b\u0002\n\u0002\u0010\u0006\n\u0000\n\u0002\u0010\u0007\n\u0002\b\u0003\n\u0002\u0010\t\n\u0000\b \u0018\u00002\u00020\u0001B\u0005¢\u0006\u0002\u0010\u0002J\u0010\u0010\u0007\u001a\u00020\b2\u0006\u0010\t\u001a\u00020\bH\u0016J\b\u0010\n\u001a\u00020\u000bH\u0016J\u0010\u0010\f\u001a\u00020\r2\u0006\u0010\u000e\u001a\u00020\rH\u0016J\b\u0010\u000f\u001a\u00020\u0010H\u0016J\b\u0010\u0011\u001a\u00020\u0012H\u0016J\b\u0010\u0013\u001a\u00020\bH\u0016J\u0010\u0010\u0013\u001a\u00020\b2\u0006\u0010\u0014\u001a\u00020\bH\u0016J\b\u0010\u0015\u001a\u00020\u0016H\u0016R\u0012\u0010\u0003\u001a\u00020\u0004X¦\u0004¢\u0006\u0006\u001a\u0004\b\u0005\u0010\u0006¨\u0006\u0017"}, d2 = {"Lkotlin/random/AbstractPlatformRandom;", "Lkotlin/random/Random;", "()V", "impl", "Ljava/util/Random;", "getImpl", "()Ljava/util/Random;", "nextBits", "", "bitCount", "nextBoolean", "", "nextBytes", "", "array", "nextDouble", "", "nextFloat", "", "nextInt", "until", "nextLong", "", "kotlin-stdlib"}, k = 1, mv = {1, 8, 0}, xi = 48) | ||||
| /* loaded from: classes.dex */ | ||||
| public abstract class AbstractPlatformRandom extends Random { | ||||
|     public abstract java.util.Random getImpl(); | ||||
|  | ||||
|     @Override // kotlin.random.Random | ||||
|     public int nextBits(int bitCount) { | ||||
|         return RandomKt.takeUpperBits(getImpl().nextInt(), bitCount); | ||||
|     } | ||||
|  | ||||
|     @Override // kotlin.random.Random | ||||
|     public int nextInt() { | ||||
|         return getImpl().nextInt(); | ||||
|     } | ||||
|  | ||||
|     @Override // kotlin.random.Random | ||||
|     public int nextInt(int until) { | ||||
|         return getImpl().nextInt(until); | ||||
|     } | ||||
|  | ||||
|     @Override // kotlin.random.Random | ||||
|     public long nextLong() { | ||||
|         return getImpl().nextLong(); | ||||
|     } | ||||
|  | ||||
|     @Override // kotlin.random.Random | ||||
|     public boolean nextBoolean() { | ||||
|         return getImpl().nextBoolean(); | ||||
|     } | ||||
|  | ||||
|     @Override // kotlin.random.Random | ||||
|     public double nextDouble() { | ||||
|         return getImpl().nextDouble(); | ||||
|     } | ||||
|  | ||||
|     @Override // kotlin.random.Random | ||||
|     public float nextFloat() { | ||||
|         return getImpl().nextFloat(); | ||||
|     } | ||||
|  | ||||
|     @Override // kotlin.random.Random | ||||
|     public byte[] nextBytes(byte[] array) { | ||||
|         Intrinsics.checkNotNullParameter(array, "array"); | ||||
|         getImpl().nextBytes(array); | ||||
|         return array; | ||||
|     } | ||||
| } | ||||
		Reference in New Issue
	
	Block a user