ADD week 5
This commit is contained in:
		
							
								
								
									
										93
									
								
								02-Easy5/E5/sources/kotlin/text/CharsKt__CharKt.java
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										93
									
								
								02-Easy5/E5/sources/kotlin/text/CharsKt__CharKt.java
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,93 @@ | ||||
| package kotlin.text; | ||||
|  | ||||
| import kotlin.Metadata; | ||||
| import kotlin.jvm.internal.Intrinsics; | ||||
| import kotlin.ranges.CharRange; | ||||
| import kotlin.ranges.IntRange; | ||||
|  | ||||
| /* compiled from: Char.kt */ | ||||
| @Metadata(d1 = {"\u0000\u001e\n\u0000\n\u0002\u0010\f\n\u0002\u0010\b\n\u0002\b\u0006\n\u0002\u0010\u000b\n\u0002\b\u0004\n\u0002\u0010\u000e\n\u0002\b\u0002\u001a\f\u0010\u0000\u001a\u00020\u0001*\u00020\u0002H\u0007\u001a\u0014\u0010\u0000\u001a\u00020\u0001*\u00020\u00022\u0006\u0010\u0003\u001a\u00020\u0002H\u0007\u001a\f\u0010\u0004\u001a\u00020\u0002*\u00020\u0001H\u0007\u001a\u0014\u0010\u0004\u001a\u00020\u0002*\u00020\u00012\u0006\u0010\u0003\u001a\u00020\u0002H\u0007\u001a\u0013\u0010\u0005\u001a\u0004\u0018\u00010\u0002*\u00020\u0001H\u0007¢\u0006\u0002\u0010\u0006\u001a\u001b\u0010\u0005\u001a\u0004\u0018\u00010\u0002*\u00020\u00012\u0006\u0010\u0003\u001a\u00020\u0002H\u0007¢\u0006\u0002\u0010\u0007\u001a\u001c\u0010\b\u001a\u00020\t*\u00020\u00012\u0006\u0010\n\u001a\u00020\u00012\b\b\u0002\u0010\u000b\u001a\u00020\t\u001a\n\u0010\f\u001a\u00020\t*\u00020\u0001\u001a\u0015\u0010\r\u001a\u00020\u000e*\u00020\u00012\u0006\u0010\n\u001a\u00020\u000eH\u0087\n\u001a\f\u0010\u000f\u001a\u00020\u000e*\u00020\u0001H\u0007¨\u0006\u0010"}, d2 = {"digitToChar", "", "", "radix", "digitToInt", "digitToIntOrNull", "(C)Ljava/lang/Integer;", "(CI)Ljava/lang/Integer;", "equals", "", "other", "ignoreCase", "isSurrogate", "plus", "", "titlecase", "kotlin-stdlib"}, k = 5, mv = {1, 8, 0}, xi = 49, xs = "kotlin/text/CharsKt") | ||||
| /* loaded from: classes.dex */ | ||||
| class CharsKt__CharKt extends CharsKt__CharJVMKt { | ||||
|     public static final int digitToInt(char c) { | ||||
|         int digitOf = CharsKt.digitOf(c, 10); | ||||
|         if (digitOf >= 0) { | ||||
|             return digitOf; | ||||
|         } | ||||
|         throw new IllegalArgumentException("Char " + c + " is not a decimal digit"); | ||||
|     } | ||||
|  | ||||
|     public static final int digitToInt(char c, int i) { | ||||
|         Integer digitToIntOrNull = CharsKt.digitToIntOrNull(c, i); | ||||
|         if (digitToIntOrNull != null) { | ||||
|             return digitToIntOrNull.intValue(); | ||||
|         } | ||||
|         throw new IllegalArgumentException("Char " + c + " is not a digit in the given radix=" + i); | ||||
|     } | ||||
|  | ||||
|     public static final Integer digitToIntOrNull(char c) { | ||||
|         Integer valueOf = Integer.valueOf(CharsKt.digitOf(c, 10)); | ||||
|         if (valueOf.intValue() >= 0) { | ||||
|             return valueOf; | ||||
|         } | ||||
|         return null; | ||||
|     } | ||||
|  | ||||
|     public static final Integer digitToIntOrNull(char c, int i) { | ||||
|         CharsKt.checkRadix(i); | ||||
|         Integer valueOf = Integer.valueOf(CharsKt.digitOf(c, i)); | ||||
|         if (valueOf.intValue() >= 0) { | ||||
|             return valueOf; | ||||
|         } | ||||
|         return null; | ||||
|     } | ||||
|  | ||||
|     public static final char digitToChar(int i) { | ||||
|         if (new IntRange(0, 9).contains(i)) { | ||||
|             return (char) (i + 48); | ||||
|         } | ||||
|         throw new IllegalArgumentException("Int " + i + " is not a decimal digit"); | ||||
|     } | ||||
|  | ||||
|     public static final char digitToChar(int i, int i2) { | ||||
|         if (!new IntRange(2, 36).contains(i2)) { | ||||
|             throw new IllegalArgumentException("Invalid radix: " + i2 + ". Valid radix values are in range 2..36"); | ||||
|         } | ||||
|         if (i >= 0 && i < i2) { | ||||
|             return (char) (i < 10 ? i + 48 : ((char) (i + 65)) - '\n'); | ||||
|         } | ||||
|         throw new IllegalArgumentException("Digit " + i + " does not represent a valid digit in radix " + i2); | ||||
|     } | ||||
|  | ||||
|     public static final String titlecase(char c) { | ||||
|         return _OneToManyTitlecaseMappingsKt.titlecaseImpl(c); | ||||
|     } | ||||
|  | ||||
|     private static final String plus(char c, String other) { | ||||
|         Intrinsics.checkNotNullParameter(other, "other"); | ||||
|         return c + other; | ||||
|     } | ||||
|  | ||||
|     public static /* synthetic */ boolean equals$default(char c, char c2, boolean z, int i, Object obj) { | ||||
|         if ((i & 2) != 0) { | ||||
|             z = false; | ||||
|         } | ||||
|         return CharsKt.equals(c, c2, z); | ||||
|     } | ||||
|  | ||||
|     public static final boolean equals(char c, char c2, boolean z) { | ||||
|         if (c == c2) { | ||||
|             return true; | ||||
|         } | ||||
|         if (!z) { | ||||
|             return false; | ||||
|         } | ||||
|         char upperCase = Character.toUpperCase(c); | ||||
|         char upperCase2 = Character.toUpperCase(c2); | ||||
|         return upperCase == upperCase2 || Character.toLowerCase(upperCase) == Character.toLowerCase(upperCase2); | ||||
|     } | ||||
|  | ||||
|     public static final boolean isSurrogate(char c) { | ||||
|         return new CharRange((char) 55296, (char) 57343).contains(c); | ||||
|     } | ||||
| } | ||||
		Reference in New Issue
	
	Block a user