source
stringlengths
13
1.73k
decompiled
stringlengths
17
2.86k
return x shr 5
return i5 >> 5;
return a shr b
return i5 >> i6;
return a shr b.toInt()
return j5 >> ((int) j6);
return x ushr 5
return i5 >>> 5;
return x ushr y
return j5 >>> i5;
return x ushr y.toInt()
return j5 >>> ((int) j6);
val b: Int = 2000040000 return a ushr b
return i5 >>> 2000040000;
return x.inv()
return ~i5;
return !a
return !z4;
return a || b
return z4 || z5;
return a && b
return z4 && z5;
val b: Int = 2000 return a == b
return i5 == 2000;
val b: Long? = a return a == b
return j5 == j5;
return a == b
i4.i.e("a", obj); i4.i.e("b", obj2); return i4.i.a(obj, obj2);
val b = "vb" return a == b
i4.i.e("a", str); return i4.i.a(str, "vb");
return a == 500
return i5 != 500;
val b: Int = 2000 return a != b
return i5 != 2000;
val b: Long? = a return a != b
return j5 != j5;
return a != b
i4.i.e("a", obj); i4.i.e("b", obj2); return !i4.i.a(obj, obj2);
val b = "vb" return a != b
i4.i.e("a", str); return !i4.i.a(str, "vb");
return a != 500
return i5 != 500;
val b: Int = 2000 return a >= b
return j5 >= ((long) 2000);
val b: Long = 1000 return a >= b
return j5 >= 1000;
val b: Long? = a return a >= b!!
return j5 >= j5;
return a >= b
return j5 >= j6;
return a >= b
return ((double) f5) >= d5;
return a >= 500
return j5 >= 500;
val c = a >= b.toInt().toChar() return c
return i4.i.f(c2, (char) ((int) d5)) >= 0;
val c = a >= b return c
return ((double) s5) >= d5;
val b = "v22b" return a >= b
i4.i.e("a", str); return str.compareTo("v22b") >= 0;
val b: Int = 2000 return a <= b
return j5 <= ((long) 2000);
val b: Long? = a return a <= b!!
return j5 <= j5;
return a <= b
return j5 <= ((long) i5);
return a <= b
return i5 <= i6;
return a <= b
return ((double) f5) <= d5;
val c = a <= b.toInt().toChar() return c
return i4.i.f(c2, (char) ((int) d5)) <= 0;
val c = a <= b return c
return ((double) s5) <= d5;
val b = "v223b" return a <= b
i4.i.e("a", str); return str.compareTo("v223b") <= 0;
val b: Int = 2000 return a > b
return j5 > ((long) 2000);
val b: Long? = a return a > b!!
return j5 > j5;
return a > b
return j5 > j6;
val c = a > b.toInt().toChar() return c
return i4.i.f(c2, (char) ((int) d5)) > 0;
val c = a > b return c
return ((double) s5) > d5;
val b = "v22b" return a > b
i4.i.e("a", str); return str.compareTo("v22b") > 0;
val b: Int = 2000 return a < b
return i5 < 2000;
val b: Long? = a return a < b!!
return j5 < j5;
return a < b
return j5 < j6;
val c = a < b.toInt().toChar() return c
return i4.i.f(c2, (char) ((int) d5)) < 0;
val c = a < b return c
return ((double) s5) < d5;
val b = "v223b" return a < b
i4.i.e("a", str); return str.compareTo("v223b") < 0;
return a as Double !in 11.0..23.0
i4.i.e("a", obj); double doubleValue = ((Double) obj).doubleValue(); boolean z4 = false; if (11.0d <= doubleValue && doubleValue <= 23.0d) { z4 = true; } return !z4;
return a !in 11..23
i4.i.e("a", obj); return !w3.j.O(new l4.j(11, 23), obj);
return a as Double in 11.0..23.0
i4.i.e("a", obj); double doubleValue = ((Double) obj).doubleValue(); return 11.0d <= doubleValue && doubleValue <= 23.0d;
return a as String !in "qw".."xcv"
i4.i.e("a", obj); String str = (String) obj; boolean z4 = false; if (str.compareTo("qw") >= 0 && str.compareTo("xcv") <= 0) { z4 = true; } return !z4;
return a as String in "cv".."dssg"
i4.i.e("a", obj); String str = (String) obj; return str.compareTo("cv") >= 0 && str.compareTo("dssg") <= 0;
return 11.0..23.0
return new l4.d(11.0d);
return 120.0..23.0
return new l4.d(120.0d);
return 10..23
return new l4.j(10, 23);
return -10..23
return new l4.j(-10, 23);
return 'A'..'z'
return new l4.c('A', 'z');
return "Aa".."wgwe"
return new l4.g();
return -10 downTo -100
return new l4.h(-10, -100, -1);
return -11 downTo -1200
return new l4.h(-11, -1200, -1);
return a.compareTo(200000.0)
return Double.compare(f5, 200000.0d);
return a.compareTo(200000.0)
return Double.compare(d5, 200000.0d);
return a.compareTo(NaN)
return Double.compare(d5, Double.NaN);
return a.compareTo(-0.0)
return Double.compare(d5, -0.0d);
return a.compareTo(POSITIVE_INFINITY)
return Double.compare(d5, Double.POSITIVE_INFINITY);
return a.equals(200000.0)
return Float.valueOf(f5).equals(Double.valueOf(200000.0d));
return a.equals(200000.0)
return Double.valueOf(d5).equals(Double.valueOf(200000.0d));
return a.equals(NaN)
return Double.valueOf(d5).equals(Double.valueOf(Double.NaN));
return a.equals(-0.0)
return Double.valueOf(d5).equals(Double.valueOf(-0.0d));
return a.equals(POSITIVE_INFINITY)
return Double.valueOf(d5).equals(Double.valueOf(Double.POSITIVE_INFINITY));
if (i in 1..4) { print(i) }
i4.i.e("i", obj); if (w3.j.O(new l4.j(1, 4), obj)) { System.out.print(obj); }
if (i in 4 downTo 1) { print(i) }
i4.i.e("i", obj); if (w3.j.O(new l4.h(4, 1, -1), obj)) { System.out.print(obj); }
for (i in 1..8 step 2) print(i)
i4.i.e("i", obj); int i5 = 1; int i6 = u1.a.i(1, 8, 2); if (1 > i6) { return; } while (true) { System.out.print(i5); if (i5 == i6) { return; } i5 += 2; }
for (i in 8 downTo 1 step 2) print(i)
i4.i.e("i", obj); int i5 = 8; int i6 = u1.a.i(8, 1, -2); if (i6 > 8) { return; } while (true) { System.out.print(i5); if (i5 == i6) { return; } i5 -= 2; }
for (i in 10000000 until 100000000) { print(i) }
i4.i.e("i", obj); for (int i5 = 10000000; i5 < 100000000; i5++) { System.out.print(i5); }
if (i in 100000000..400000000) { print(i) }
i4.i.e("i", obj); if (w3.j.O(new l4.j(100000000, 400000000), obj)) { System.out.print(obj); }
if (i in 400000000 downTo 100000000) { print(i) }
i4.i.e("i", obj); if (w3.j.O(new l4.h(400000000, 100000000, -1), obj)) { System.out.print(obj); }
for (i in 100000000..800000000 step 2324) print(i)
i4.i.e("i", obj); int i5 = 100000000; int i6 = u1.a.i(100000000, 800000000, 2324); if (100000000 > i6) { return; } while (true) { System.out.print(i5); if (i5 == i6) { return; } i5 += 2324; }
for (i in 800000000 downTo 100000000 step 2345) print(i)
i4.i.e("i", obj); int i5 = 800000000; int i6 = u1.a.i(800000000, 100000000, -2345); if (i6 > 800000000) { return; } while (true) { System.out.print(i5); if (i5 == i6) { return; } i5 -= 2345; }
for (i in 100000000 until 1000000000) { print(i) }
i4.i.e("i", obj); for (int i5 = 100000000; i5 < 1000000000; i5++) { System.out.print(i5); }
println((1..10).filter { it % 2 == 0 })
boolean z4; i4.i.e("i", obj); l4.j jVar = new l4.j(1, 10); ArrayList arrayList = new ArrayList(); for (Integer num : jVar) { if (num.intValue() % 2 == 0) { z4 = true; } else { z4 = false; } if (z4) { arrayList.add(num); } } System.out.println(arrayList);
val x = 10 val y = 9 if (x in 1..y+1) { return true } return false
i4.i.e("i", obj); return true;
val list = listOf("a", "b", "c") if (-1 !in 0..list.lastIndex) { println("qwe") } if (list.size !in list.indices) { println("zxs") }
i4.i.e("i", obj); List u5 = androidx.activity.m.u("a", "b", "c"); System.out.println((Object) "qwe"); int size = u5.size(); int size2 = u5.size(); boolean z4 = false; if (size2 >= 0 && size2 < size) { z4 = true; } if (!z4) { System.out.println((Object) "zxs"); }
val asc = Array(5) { i -> (i * i).toString() } return asc
String[] strArr = new String[5]; for (int i5 = 0; i5 < 5; i5++) { strArr[i5] = String.valueOf(i5 * i5); } return strArr;
val asc = Array(5) { i -> (i * i).toString() } asc.forEach { println(it) }
String[] strArr = new String[5]; for (int i5 = 0; i5 < 5; i5++) { strArr[i5] = String.valueOf(i5 * i5); } for (int i6 = 0; i6 < 5; i6++) { System.out.println((Object) strArr[i6]); }
val x: IntArray = intArrayOf(1, 2, 3) return x
return new int[]{1, 2, 3};
val arr = IntArray(5) return arr
return new int[5];
val arr = IntArray(5) { 42 } return arr
int[] iArr = new int[5]; for (int i5 = 0; i5 < 5; i5++) { iArr[i5] = 42; } return iArr;
var arr = IntArray(5) { it * 1 } return arr
int[] iArr = new int[5]; for (int i5 = 0; i5 < 5; i5++) { iArr[i5] = i5 * 1; } return iArr;
var arr = IntArray(5) { it * 1 } return arr[1] + arr[2]
int[] iArr = new int[5]; for (int i5 = 0; i5 < 5; i5++) { iArr[i5] = i5 * 1; } return iArr[1] + iArr[2];
val arr = ByteArray(5) return arr
return new byte[5];
val arr = ShortArray(5) { 42 } return arr
short[] sArr = new short[5]; for (int i5 = 0; i5 < 5; i5++) { sArr[i5] = 42; } return sArr;
var arr = DoubleArray(5) { it * 1.0 } return arr
double[] dArr = new double[5]; for (int i5 = 0; i5 < 5; i5++) { dArr[i5] = i5 * 1.0d; } return dArr;
var arr = DoubleArray(5) { it * 1.0 } return arr[1] + arr[2]
double[] dArr = new double[5]; for (int i5 = 0; i5 < 5; i5++) { dArr[i5] = i5 * 1.0d; } return dArr[1] + dArr[2];
when { "ore" in items -> return "s" "apple" in items -> return "cvb" } return "oo"
i4.i.e("items", set); if (set.contains("ore")) { return "s"; } if (set.contains("apple")) { return "cvb"; } return "oo";
println("Number of elements: ${numbers.size}") if (numbers.contains(1)) println("1 is in the set") val numbersBackwards = setOf(4, 3, 2, 1) return "The sets are equal: ${numbers == numbersBackwards}"
i4.i.e("numbers", set); System.out.println((Object) ("Number of elements: " + set.size())); if (set.contains(1)) { System.out.println((Object) "1 is in the set"); } Set l = b3.d.l(4, 3, 2, 1); StringBuilder e5 = androidx.activity.e.e("The sets are equal: "); e5.append(i4.i.a(set, l)); return e5.toString();
val pair = setA.partition { it % 2 == 0 } return pair
boolean z4; i4.i.e("setA", set); ArrayList arrayList = new ArrayList(); ArrayList arrayList2 = new ArrayList(); for (Object obj : set) { if (((Number) obj).intValue() % 2 == 0) { z4 = true; } else { z4 = false; } if (z4) { arrayList.add(obj); } else { arrayList2.add(obj); } } return new v3.d<>(arrayList, arrayList2);