raspberry_games_engine_helpers 1.8.457 → 1.8.460

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -57,12 +57,6 @@ if (typeof Math.clz32 === 'undefined') {
57
57
  };
58
58
  }(Math.log, Math.LN2);
59
59
  }
60
- if (typeof String.prototype.startsWith === 'undefined') {
61
- Object.defineProperty(String.prototype, 'startsWith', {value: function (searchString, position) {
62
- position = position || 0;
63
- return this.lastIndexOf(searchString, position) === position;
64
- }});
65
- }
66
60
  if (typeof String.prototype.endsWith === 'undefined') {
67
61
  Object.defineProperty(String.prototype, 'endsWith', {value: function (searchString, position) {
68
62
  var subjectString = this.toString();
@@ -74,6 +68,12 @@ if (typeof String.prototype.endsWith === 'undefined') {
74
68
  return lastIndex !== -1 && lastIndex === position;
75
69
  }});
76
70
  }
71
+ if (typeof String.prototype.startsWith === 'undefined') {
72
+ Object.defineProperty(String.prototype, 'startsWith', {value: function (searchString, position) {
73
+ position = position || 0;
74
+ return this.lastIndexOf(searchString, position) === position;
75
+ }});
76
+ }
77
77
  //endregion
78
78
  (function (factory) {
79
79
  if (typeof define === 'function' && define.amd)
@@ -456,6 +456,9 @@ if (typeof String.prototype.endsWith === 'undefined') {
456
456
  return toMutableList(_this__u8e3s4);
457
457
  }
458
458
  }
459
+ function toMutableList(_this__u8e3s4) {
460
+ return ArrayList_init_$Create$_1(asCollection(_this__u8e3s4));
461
+ }
459
462
  function zip(_this__u8e3s4, other) {
460
463
  // Inline function 'kotlin.collections.zip' call
461
464
  var tmp0 = _this__u8e3s4.length;
@@ -615,9 +618,6 @@ if (typeof String.prototype.endsWith === 'undefined') {
615
618
  }
616
619
  return -1;
617
620
  }
618
- function toMutableList(_this__u8e3s4) {
619
- return ArrayList_init_$Create$_1(asCollection(_this__u8e3s4));
620
- }
621
621
  function get_lastIndex_1(_this__u8e3s4) {
622
622
  return _this__u8e3s4.length - 1 | 0;
623
623
  }
@@ -2058,44 +2058,44 @@ if (typeof String.prototype.endsWith === 'undefined') {
2058
2058
  }
2059
2059
  return tmp;
2060
2060
  }
2061
- function contentEqualsInternal(_this__u8e3s4, other) {
2061
+ function contentHashCodeInternal(_this__u8e3s4) {
2062
2062
  // Inline function 'kotlin.js.asDynamic' call
2063
2063
  var a = _this__u8e3s4;
2064
- // Inline function 'kotlin.js.asDynamic' call
2065
- var b = other;
2066
- if (a === b)
2067
- return true;
2068
- if (a == null || b == null || !isArrayish(b) || a.length != b.length)
2069
- return false;
2064
+ if (a == null)
2065
+ return 0;
2066
+ var result = 1;
2070
2067
  var inductionVariable = 0;
2071
2068
  var last = a.length;
2072
2069
  if (inductionVariable < last)
2073
2070
  do {
2074
2071
  var i = inductionVariable;
2075
2072
  inductionVariable = inductionVariable + 1 | 0;
2076
- if (!equals(a[i], b[i])) {
2077
- return false;
2078
- }
2073
+ result = imul(result, 31) + hashCode_0(a[i]) | 0;
2079
2074
  }
2080
2075
  while (inductionVariable < last);
2081
- return true;
2076
+ return result;
2082
2077
  }
2083
- function contentHashCodeInternal(_this__u8e3s4) {
2078
+ function contentEqualsInternal(_this__u8e3s4, other) {
2084
2079
  // Inline function 'kotlin.js.asDynamic' call
2085
2080
  var a = _this__u8e3s4;
2086
- if (a == null)
2087
- return 0;
2088
- var result = 1;
2081
+ // Inline function 'kotlin.js.asDynamic' call
2082
+ var b = other;
2083
+ if (a === b)
2084
+ return true;
2085
+ if (a == null || b == null || !isArrayish(b) || a.length != b.length)
2086
+ return false;
2089
2087
  var inductionVariable = 0;
2090
2088
  var last = a.length;
2091
2089
  if (inductionVariable < last)
2092
2090
  do {
2093
2091
  var i = inductionVariable;
2094
2092
  inductionVariable = inductionVariable + 1 | 0;
2095
- result = imul(result, 31) + hashCode_0(a[i]) | 0;
2093
+ if (!equals(a[i], b[i])) {
2094
+ return false;
2095
+ }
2096
2096
  }
2097
2097
  while (inductionVariable < last);
2098
- return result;
2098
+ return true;
2099
2099
  }
2100
2100
  function arrayToString(array) {
2101
2101
  return joinToString(array, ', ', '[', ']', VOID, VOID, arrayToString$lambda);
@@ -2541,39 +2541,6 @@ if (typeof String.prototype.endsWith === 'undefined') {
2541
2541
  function defineProp(obj, name, getter, setter, enumerable) {
2542
2542
  return Object.defineProperty(obj, name, {configurable: true, get: getter, set: setter, enumerable: enumerable});
2543
2543
  }
2544
- function equals(obj1, obj2) {
2545
- if (obj1 == null) {
2546
- return obj2 == null;
2547
- }
2548
- if (obj2 == null) {
2549
- return false;
2550
- }
2551
- if (typeof obj1 === 'object' && typeof obj1.equals === 'function') {
2552
- return obj1.equals(obj2);
2553
- }
2554
- if (obj1 !== obj1) {
2555
- return obj2 !== obj2;
2556
- }
2557
- if (typeof obj1 === 'number' && typeof obj2 === 'number') {
2558
- var tmp;
2559
- if (obj1 === obj2) {
2560
- var tmp_0;
2561
- if (obj1 !== 0) {
2562
- tmp_0 = true;
2563
- } else {
2564
- // Inline function 'kotlin.js.asDynamic' call
2565
- var tmp_1 = 1 / obj1;
2566
- // Inline function 'kotlin.js.asDynamic' call
2567
- tmp_0 = tmp_1 === 1 / obj2;
2568
- }
2569
- tmp = tmp_0;
2570
- } else {
2571
- tmp = false;
2572
- }
2573
- return tmp;
2574
- }
2575
- return obj1 === obj2;
2576
- }
2577
2544
  function hashCode_0(obj) {
2578
2545
  if (obj == null)
2579
2546
  return 0;
@@ -2613,6 +2580,39 @@ if (typeof String.prototype.endsWith === 'undefined') {
2613
2580
  }
2614
2581
  return tmp;
2615
2582
  }
2583
+ function equals(obj1, obj2) {
2584
+ if (obj1 == null) {
2585
+ return obj2 == null;
2586
+ }
2587
+ if (obj2 == null) {
2588
+ return false;
2589
+ }
2590
+ if (typeof obj1 === 'object' && typeof obj1.equals === 'function') {
2591
+ return obj1.equals(obj2);
2592
+ }
2593
+ if (obj1 !== obj1) {
2594
+ return obj2 !== obj2;
2595
+ }
2596
+ if (typeof obj1 === 'number' && typeof obj2 === 'number') {
2597
+ var tmp;
2598
+ if (obj1 === obj2) {
2599
+ var tmp_0;
2600
+ if (obj1 !== 0) {
2601
+ tmp_0 = true;
2602
+ } else {
2603
+ // Inline function 'kotlin.js.asDynamic' call
2604
+ var tmp_1 = 1 / obj1;
2605
+ // Inline function 'kotlin.js.asDynamic' call
2606
+ tmp_0 = tmp_1 === 1 / obj2;
2607
+ }
2608
+ tmp = tmp_0;
2609
+ } else {
2610
+ tmp = false;
2611
+ }
2612
+ return tmp;
2613
+ }
2614
+ return obj1 === obj2;
2615
+ }
2616
2616
  function toString_1(o) {
2617
2617
  var tmp;
2618
2618
  if (o == null) {
@@ -3255,6 +3255,14 @@ if (typeof String.prototype.endsWith === 'undefined') {
3255
3255
  }
3256
3256
  return arrayCopyResize(_this__u8e3s4, newSize, null);
3257
3257
  }
3258
+ function copyOf_0(_this__u8e3s4, newSize) {
3259
+ // Inline function 'kotlin.require' call
3260
+ if (!(newSize >= 0)) {
3261
+ var message = 'Invalid new array size: ' + newSize + '.';
3262
+ throw IllegalArgumentException_init_$Create$_0(toString_1(message));
3263
+ }
3264
+ return fillFrom(_this__u8e3s4, new Int8Array(newSize));
3265
+ }
3258
3266
  function contentEquals(_this__u8e3s4, other) {
3259
3267
  return contentEqualsInternal(_this__u8e3s4, other);
3260
3268
  }
@@ -3265,7 +3273,7 @@ if (typeof String.prototype.endsWith === 'undefined') {
3265
3273
  function contentHashCode(_this__u8e3s4) {
3266
3274
  return contentHashCodeInternal(_this__u8e3s4);
3267
3275
  }
3268
- function copyOf_0(_this__u8e3s4, newSize) {
3276
+ function copyOf_1(_this__u8e3s4, newSize) {
3269
3277
  // Inline function 'kotlin.require' call
3270
3278
  if (!(newSize >= 0)) {
3271
3279
  var message = 'Invalid new array size: ' + newSize + '.';
@@ -3277,21 +3285,13 @@ if (typeof String.prototype.endsWith === 'undefined') {
3277
3285
  array.$type$ = tmp0;
3278
3286
  return array;
3279
3287
  }
3280
- function copyOf_1(_this__u8e3s4, newSize) {
3281
- // Inline function 'kotlin.require' call
3282
- if (!(newSize >= 0)) {
3283
- var message = 'Invalid new array size: ' + newSize + '.';
3284
- throw IllegalArgumentException_init_$Create$_0(toString_1(message));
3285
- }
3286
- return fillFrom(_this__u8e3s4, new Float64Array(newSize));
3287
- }
3288
3288
  function copyOf_2(_this__u8e3s4, newSize) {
3289
3289
  // Inline function 'kotlin.require' call
3290
3290
  if (!(newSize >= 0)) {
3291
3291
  var message = 'Invalid new array size: ' + newSize + '.';
3292
3292
  throw IllegalArgumentException_init_$Create$_0(toString_1(message));
3293
3293
  }
3294
- return fillFrom(_this__u8e3s4, new Float32Array(newSize));
3294
+ return fillFrom(_this__u8e3s4, new Float64Array(newSize));
3295
3295
  }
3296
3296
  function copyOf_3(_this__u8e3s4, newSize) {
3297
3297
  // Inline function 'kotlin.require' call
@@ -3299,7 +3299,7 @@ if (typeof String.prototype.endsWith === 'undefined') {
3299
3299
  var message = 'Invalid new array size: ' + newSize + '.';
3300
3300
  throw IllegalArgumentException_init_$Create$_0(toString_1(message));
3301
3301
  }
3302
- return fillFrom(_this__u8e3s4, longArray(newSize));
3302
+ return fillFrom(_this__u8e3s4, new Float32Array(newSize));
3303
3303
  }
3304
3304
  function copyOf_4(_this__u8e3s4, newSize) {
3305
3305
  // Inline function 'kotlin.require' call
@@ -3307,7 +3307,7 @@ if (typeof String.prototype.endsWith === 'undefined') {
3307
3307
  var message = 'Invalid new array size: ' + newSize + '.';
3308
3308
  throw IllegalArgumentException_init_$Create$_0(toString_1(message));
3309
3309
  }
3310
- return fillFrom(_this__u8e3s4, new Int32Array(newSize));
3310
+ return fillFrom(_this__u8e3s4, longArray(newSize));
3311
3311
  }
3312
3312
  function copyOf_5(_this__u8e3s4, newSize) {
3313
3313
  // Inline function 'kotlin.require' call
@@ -3315,7 +3315,7 @@ if (typeof String.prototype.endsWith === 'undefined') {
3315
3315
  var message = 'Invalid new array size: ' + newSize + '.';
3316
3316
  throw IllegalArgumentException_init_$Create$_0(toString_1(message));
3317
3317
  }
3318
- return fillFrom(_this__u8e3s4, new Int16Array(newSize));
3318
+ return fillFrom(_this__u8e3s4, new Int32Array(newSize));
3319
3319
  }
3320
3320
  function copyOf_6(_this__u8e3s4, newSize) {
3321
3321
  // Inline function 'kotlin.require' call
@@ -3323,7 +3323,7 @@ if (typeof String.prototype.endsWith === 'undefined') {
3323
3323
  var message = 'Invalid new array size: ' + newSize + '.';
3324
3324
  throw IllegalArgumentException_init_$Create$_0(toString_1(message));
3325
3325
  }
3326
- return fillFrom(_this__u8e3s4, new Int8Array(newSize));
3326
+ return fillFrom(_this__u8e3s4, new Int16Array(newSize));
3327
3327
  }
3328
3328
  function copyOf_7(_this__u8e3s4, newSize) {
3329
3329
  // Inline function 'kotlin.require' call
@@ -3536,6 +3536,9 @@ if (typeof String.prototype.endsWith === 'undefined') {
3536
3536
  function setOf(element) {
3537
3537
  return hashSetOf([element]);
3538
3538
  }
3539
+ function sort_0(_this__u8e3s4) {
3540
+ collectionsSort(_this__u8e3s4, naturalOrder());
3541
+ }
3539
3542
  function mapOf(pair) {
3540
3543
  return hashMapOf([pair]);
3541
3544
  }
@@ -3571,9 +3574,6 @@ if (typeof String.prototype.endsWith === 'undefined') {
3571
3574
  }
3572
3575
  return tmp;
3573
3576
  }
3574
- function sort_0(_this__u8e3s4) {
3575
- collectionsSort(_this__u8e3s4, naturalOrder());
3576
- }
3577
3577
  function collectionsSort(list, comparator) {
3578
3578
  if (list.c1() <= 1)
3579
3579
  return Unit_instance;
@@ -4539,7 +4539,7 @@ if (typeof String.prototype.endsWith === 'undefined') {
4539
4539
  var tmp = $this;
4540
4540
  var tmp0_safe_receiver = $this.o6_1;
4541
4541
  tmp.o6_1 = tmp0_safe_receiver == null ? null : copyOfUninitializedElements(tmp0_safe_receiver, newSize);
4542
- $this.p6_1 = copyOf_4($this.p6_1, newSize);
4542
+ $this.p6_1 = copyOf_5($this.p6_1, newSize);
4543
4543
  var newHashSize = computeHashSize(Companion_instance_6, newSize);
4544
4544
  if (newHashSize > _get_hashSize__tftcho($this)) {
4545
4545
  rehash($this, newHashSize);
@@ -10353,7 +10353,23 @@ if (typeof String.prototype.endsWith === 'undefined') {
10353
10353
  protoOf(Duration).equals = function (other) {
10354
10354
  return Duration__equals_impl_ygj6w6(this.qf_1, other);
10355
10355
  };
10356
+ function durationOfMillis(normalMillis) {
10357
+ var tmp = Companion_getInstance_15();
10358
+ // Inline function 'kotlin.Long.plus' call
10359
+ var this_0 = shiftLeft(normalMillis, 1);
10360
+ var tmp$ret$0 = add(this_0, fromInt(1));
10361
+ return tmp.pf(tmp$ret$0);
10362
+ }
10356
10363
  function toDuration(_this__u8e3s4, unit) {
10364
+ var tmp;
10365
+ if (unit.z2(DurationUnit_SECONDS_getInstance()) <= 0) {
10366
+ tmp = durationOfNanos(convertDurationUnitOverflow(fromInt(_this__u8e3s4), unit, DurationUnit_NANOSECONDS_getInstance()));
10367
+ } else {
10368
+ tmp = toDuration_0(fromInt(_this__u8e3s4), unit);
10369
+ }
10370
+ return tmp;
10371
+ }
10372
+ function toDuration_0(_this__u8e3s4, unit) {
10357
10373
  var maxNsInUnit = convertDurationUnitOverflow(new Long(-387905, 1073741823), DurationUnit_NANOSECONDS_getInstance(), unit);
10358
10374
  var tmp;
10359
10375
  if (compare(negate(maxNsInUnit), _this__u8e3s4) <= 0 ? compare(_this__u8e3s4, maxNsInUnit) <= 0 : false) {
@@ -10369,22 +10385,6 @@ if (typeof String.prototype.endsWith === 'undefined') {
10369
10385
  }
10370
10386
  return tmp;
10371
10387
  }
10372
- function toDuration_0(_this__u8e3s4, unit) {
10373
- var tmp;
10374
- if (unit.z2(DurationUnit_SECONDS_getInstance()) <= 0) {
10375
- tmp = durationOfNanos(convertDurationUnitOverflow(fromInt(_this__u8e3s4), unit, DurationUnit_NANOSECONDS_getInstance()));
10376
- } else {
10377
- tmp = toDuration(fromInt(_this__u8e3s4), unit);
10378
- }
10379
- return tmp;
10380
- }
10381
- function durationOfMillis(normalMillis) {
10382
- var tmp = Companion_getInstance_15();
10383
- // Inline function 'kotlin.Long.plus' call
10384
- var this_0 = shiftLeft(normalMillis, 1);
10385
- var tmp$ret$0 = add(this_0, fromInt(1));
10386
- return tmp.pf(tmp$ret$0);
10387
- }
10388
10388
  function parseDuration(value, strictIso, throwException) {
10389
10389
  throwException = throwException === VOID ? true : throwException;
10390
10390
  // Inline function 'kotlin.text.isEmpty' call
@@ -10767,7 +10767,7 @@ if (typeof String.prototype.endsWith === 'undefined') {
10767
10767
  }
10768
10768
  index = index + 1 | 0;
10769
10769
  }
10770
- return Duration__plus_impl_yu9v8f(toDuration(totalMillis, DurationUnit_MILLISECONDS_getInstance()), toDuration(totalNanos, DurationUnit_NANOSECONDS_getInstance()));
10770
+ return Duration__plus_impl_yu9v8f(toDuration_0(totalMillis, DurationUnit_MILLISECONDS_getInstance()), toDuration_0(totalNanos, DurationUnit_NANOSECONDS_getInstance()));
10771
10771
  }
10772
10772
  function parseDefaultStringFormat(value, startIndex, hasSign, throwException) {
10773
10773
  var index = startIndex;
@@ -11057,7 +11057,7 @@ if (typeof String.prototype.endsWith === 'undefined') {
11057
11057
  totalNanos = add(totalNanos, unit.z2(DurationUnit_MINUTES_getInstance()) >= 0 && (index - fractionStartIndex | 0) > 15 ? parseFractionFallback(value, fractionStartIndex, index - get_shortNameLength(unit) | 0, unit) : fractionDigitsToNanos(fractionValue, unit));
11058
11058
  }
11059
11059
  }
11060
- return Duration__plus_impl_yu9v8f(toDuration(totalMillis, DurationUnit_MILLISECONDS_getInstance()), toDuration(totalNanos, DurationUnit_NANOSECONDS_getInstance()));
11060
+ return Duration__plus_impl_yu9v8f(toDuration_0(totalMillis, DurationUnit_MILLISECONDS_getInstance()), toDuration_0(totalNanos, DurationUnit_NANOSECONDS_getInstance()));
11061
11061
  }
11062
11062
  function Companion_16() {
11063
11063
  Companion_instance_16 = this;
@@ -11391,11 +11391,11 @@ if (typeof String.prototype.endsWith === 'undefined') {
11391
11391
  Companion_getInstance_15();
11392
11392
  // Inline function 'kotlin.time.Companion.seconds' call
11393
11393
  var this_0 = subtract(this.eg_1, other.eg_1);
11394
- var tmp = toDuration(this_0, DurationUnit_SECONDS_getInstance());
11394
+ var tmp = toDuration_0(this_0, DurationUnit_SECONDS_getInstance());
11395
11395
  Companion_getInstance_15();
11396
11396
  // Inline function 'kotlin.time.Companion.nanoseconds' call
11397
11397
  var this_1 = this.fg_1 - other.fg_1 | 0;
11398
- var tmp$ret$1 = toDuration_0(this_1, DurationUnit_NANOSECONDS_getInstance());
11398
+ var tmp$ret$1 = toDuration(this_1, DurationUnit_NANOSECONDS_getInstance());
11399
11399
  return Duration__plus_impl_yu9v8f(tmp, tmp$ret$1);
11400
11400
  };
11401
11401
  protoOf(Instant).ig = function (other) {
@@ -13451,15 +13451,15 @@ if (typeof String.prototype.endsWith === 'undefined') {
13451
13451
  _.$_$.y4 = contentEquals;
13452
13452
  _.$_$.z4 = contentHashCode;
13453
13453
  _.$_$.a5 = contentToString;
13454
- _.$_$.b5 = copyOf_5;
13455
- _.$_$.c5 = copyOf_3;
13454
+ _.$_$.b5 = copyOf_6;
13455
+ _.$_$.c5 = copyOf_4;
13456
13456
  _.$_$.d5 = copyOf_7;
13457
- _.$_$.e5 = copyOf_0;
13458
- _.$_$.f5 = copyOf_6;
13459
- _.$_$.g5 = copyOf_1;
13460
- _.$_$.h5 = copyOf_2;
13457
+ _.$_$.e5 = copyOf_1;
13458
+ _.$_$.f5 = copyOf_0;
13459
+ _.$_$.g5 = copyOf_2;
13460
+ _.$_$.h5 = copyOf_3;
13461
13461
  _.$_$.i5 = copyOf;
13462
- _.$_$.j5 = copyOf_4;
13462
+ _.$_$.j5 = copyOf_5;
13463
13463
  _.$_$.k5 = copyToArray;
13464
13464
  _.$_$.l5 = distinct;
13465
13465
  _.$_$.m5 = drop;
@@ -13645,49 +13645,50 @@ if (typeof String.prototype.endsWith === 'undefined') {
13645
13645
  _.$_$.kc = trimIndent;
13646
13646
  _.$_$.lc = Duration;
13647
13647
  _.$_$.mc = Instant;
13648
- _.$_$.nc = toDuration;
13649
- _.$_$.oc = Uuid;
13650
- _.$_$.pc = ArithmeticException;
13651
- _.$_$.qc = Char;
13652
- _.$_$.rc = Comparable;
13653
- _.$_$.sc = Comparator;
13654
- _.$_$.tc = DeepRecursiveFunction;
13655
- _.$_$.uc = DeepRecursiveScope;
13656
- _.$_$.vc = Enum;
13657
- _.$_$.wc = Exception;
13658
- _.$_$.xc = IllegalArgumentException;
13659
- _.$_$.yc = Long;
13660
- _.$_$.zc = Pair;
13661
- _.$_$.ad = Result;
13662
- _.$_$.bd = RuntimeException;
13663
- _.$_$.cd = THROW_CCE;
13664
- _.$_$.dd = THROW_IAE;
13665
- _.$_$.ed = Triple;
13666
- _.$_$.fd = UByteArray;
13667
- _.$_$.gd = UByte;
13668
- _.$_$.hd = UIntArray;
13669
- _.$_$.id = UInt;
13670
- _.$_$.jd = ULongArray;
13671
- _.$_$.kd = ULong;
13672
- _.$_$.ld = UShortArray;
13673
- _.$_$.md = UShort;
13674
- _.$_$.nd = Unit;
13675
- _.$_$.od = arrayOf;
13676
- _.$_$.pd = countTrailingZeroBits;
13677
- _.$_$.qd = createFailure;
13678
- _.$_$.rd = ensureNotNull;
13679
- _.$_$.sd = invoke;
13680
- _.$_$.td = isFinite_0;
13681
- _.$_$.ud = isFinite;
13682
- _.$_$.vd = lazy;
13683
- _.$_$.wd = lazy_0;
13684
- _.$_$.xd = noWhenBranchMatchedException;
13685
- _.$_$.yd = plus_2;
13686
- _.$_$.zd = printStackTrace;
13687
- _.$_$.ae = stackTraceToString;
13688
- _.$_$.be = throwOnFailure;
13689
- _.$_$.ce = toString_0;
13690
- _.$_$.de = to;
13648
+ _.$_$.nc = toDuration_0;
13649
+ _.$_$.oc = toDuration;
13650
+ _.$_$.pc = Uuid;
13651
+ _.$_$.qc = ArithmeticException;
13652
+ _.$_$.rc = Char;
13653
+ _.$_$.sc = Comparable;
13654
+ _.$_$.tc = Comparator;
13655
+ _.$_$.uc = DeepRecursiveFunction;
13656
+ _.$_$.vc = DeepRecursiveScope;
13657
+ _.$_$.wc = Enum;
13658
+ _.$_$.xc = Exception;
13659
+ _.$_$.yc = IllegalArgumentException;
13660
+ _.$_$.zc = Long;
13661
+ _.$_$.ad = Pair;
13662
+ _.$_$.bd = Result;
13663
+ _.$_$.cd = RuntimeException;
13664
+ _.$_$.dd = THROW_CCE;
13665
+ _.$_$.ed = THROW_IAE;
13666
+ _.$_$.fd = Triple;
13667
+ _.$_$.gd = UByteArray;
13668
+ _.$_$.hd = UByte;
13669
+ _.$_$.id = UIntArray;
13670
+ _.$_$.jd = UInt;
13671
+ _.$_$.kd = ULongArray;
13672
+ _.$_$.ld = ULong;
13673
+ _.$_$.md = UShortArray;
13674
+ _.$_$.nd = UShort;
13675
+ _.$_$.od = Unit;
13676
+ _.$_$.pd = arrayOf;
13677
+ _.$_$.qd = countTrailingZeroBits;
13678
+ _.$_$.rd = createFailure;
13679
+ _.$_$.sd = ensureNotNull;
13680
+ _.$_$.td = invoke;
13681
+ _.$_$.ud = isFinite_0;
13682
+ _.$_$.vd = isFinite;
13683
+ _.$_$.wd = lazy;
13684
+ _.$_$.xd = lazy_0;
13685
+ _.$_$.yd = noWhenBranchMatchedException;
13686
+ _.$_$.zd = plus_2;
13687
+ _.$_$.ae = printStackTrace;
13688
+ _.$_$.be = stackTraceToString;
13689
+ _.$_$.ce = throwOnFailure;
13690
+ _.$_$.de = toString_0;
13691
+ _.$_$.ee = to;
13691
13692
  //endregion
13692
13693
  return _;
13693
13694
  }));