git-digger 1.2.20 → 1.2.21

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.
@@ -32,6 +32,11 @@ if (typeof Array.prototype.fill === 'undefined') {
32
32
  Object.defineProperty(TypedArray.prototype, 'fill', {value: Array.prototype.fill});
33
33
  }
34
34
  });
35
+ if (typeof Math.log2 === 'undefined') {
36
+ Math.log2 = function (x) {
37
+ return Math.log(x) * Math.LOG2E;
38
+ };
39
+ }
35
40
  if (typeof Math.clz32 === 'undefined') {
36
41
  Math.clz32 = function (log, LN2) {
37
42
  return function (x) {
@@ -43,16 +48,17 @@ if (typeof Math.clz32 === 'undefined') {
43
48
  };
44
49
  }(Math.log, Math.LN2);
45
50
  }
46
- if (typeof Math.log2 === 'undefined') {
47
- Math.log2 = function (x) {
48
- return Math.log(x) * Math.LOG2E;
49
- };
50
- }
51
51
  if (typeof Math.log10 === 'undefined') {
52
52
  Math.log10 = function (x) {
53
53
  return Math.log(x) * Math.LOG10E;
54
54
  };
55
55
  }
56
+ if (typeof String.prototype.startsWith === 'undefined') {
57
+ Object.defineProperty(String.prototype, 'startsWith', {value: function (searchString, position) {
58
+ position = position || 0;
59
+ return this.lastIndexOf(searchString, position) === position;
60
+ }});
61
+ }
56
62
  if (typeof String.prototype.endsWith === 'undefined') {
57
63
  Object.defineProperty(String.prototype, 'endsWith', {value: function (searchString, position) {
58
64
  var subjectString = this.toString();
@@ -64,12 +70,6 @@ if (typeof String.prototype.endsWith === 'undefined') {
64
70
  return lastIndex !== -1 && lastIndex === position;
65
71
  }});
66
72
  }
67
- if (typeof String.prototype.startsWith === 'undefined') {
68
- Object.defineProperty(String.prototype, 'startsWith', {value: function (searchString, position) {
69
- position = position || 0;
70
- return this.lastIndexOf(searchString, position) === position;
71
- }});
72
- }
73
73
  if (typeof Math.imul === 'undefined') {
74
74
  Math.imul = function imul(a, b) {
75
75
  return (a & 4.29490176E9) * (b & 65535) + (a & 65535) * (b | 0) | 0;
@@ -99,11 +99,11 @@ if (typeof Math.imul === 'undefined') {
99
99
  setMetadataFor(Collection, 'Collection', interfaceMeta);
100
100
  setMetadataFor(AbstractCollection, 'AbstractCollection', classMeta, VOID, [Collection]);
101
101
  setMetadataFor(MutableIterable, 'MutableIterable', interfaceMeta);
102
- setMetadataFor(AbstractMutableCollection, 'AbstractMutableCollection', classMeta, AbstractCollection, [AbstractCollection, Collection, MutableIterable]);
102
+ setMetadataFor(AbstractMutableCollection, 'AbstractMutableCollection', classMeta, AbstractCollection, [AbstractCollection, MutableIterable, Collection]);
103
103
  setMetadataFor(IteratorImpl, 'IteratorImpl', classMeta);
104
104
  setMetadataFor(ListIteratorImpl, 'ListIteratorImpl', classMeta, IteratorImpl);
105
105
  setMetadataFor(List, 'List', interfaceMeta, VOID, [Collection]);
106
- setMetadataFor(MutableList, 'MutableList', interfaceMeta, VOID, [List, Collection, MutableIterable]);
106
+ setMetadataFor(MutableList, 'MutableList', interfaceMeta, VOID, [List, MutableIterable, Collection]);
107
107
  setMetadataFor(AbstractMutableList, 'AbstractMutableList', classMeta, AbstractMutableCollection, [AbstractMutableCollection, MutableList]);
108
108
  setMetadataFor(RandomAccess, 'RandomAccess', interfaceMeta);
109
109
  setMetadataFor(SubList, 'SubList', classMeta, AbstractMutableList, [AbstractMutableList, RandomAccess]);
@@ -112,7 +112,7 @@ if (typeof Math.imul === 'undefined') {
112
112
  setMetadataFor(MutableMap, 'MutableMap', interfaceMeta, VOID, [Map_0]);
113
113
  setMetadataFor(AbstractMutableMap, 'AbstractMutableMap', classMeta, AbstractMap, [AbstractMap, MutableMap]);
114
114
  setMetadataFor(Set, 'Set', interfaceMeta, VOID, [Collection]);
115
- setMetadataFor(MutableSet, 'MutableSet', interfaceMeta, VOID, [Set, Collection, MutableIterable]);
115
+ setMetadataFor(MutableSet, 'MutableSet', interfaceMeta, VOID, [Set, MutableIterable, Collection]);
116
116
  setMetadataFor(AbstractMutableSet, 'AbstractMutableSet', classMeta, AbstractMutableCollection, [AbstractMutableCollection, MutableSet]);
117
117
  setMetadataFor(Companion, 'Companion', objectMeta);
118
118
  setMetadataFor(ArrayList, 'ArrayList', classMeta, AbstractMutableList, [AbstractMutableList, MutableList, RandomAccess], ArrayList_init_$Create$);
@@ -4251,6 +4251,34 @@ if (typeof Math.imul === 'undefined') {
4251
4251
  }
4252
4252
  return min;
4253
4253
  }
4254
+ function take(_this__u8e3s4, n) {
4255
+ // Inline function 'kotlin.require' call
4256
+ // Inline function 'kotlin.contracts.contract' call
4257
+ if (!(n >= 0)) {
4258
+ // Inline function 'kotlin.collections.take.<anonymous>' call
4259
+ var message = 'Requested element count ' + n + ' is less than zero.';
4260
+ throw IllegalArgumentException_init_$Create$_0(toString_1(message));
4261
+ }
4262
+ if (n === 0)
4263
+ return emptyList();
4264
+ if (isInterface(_this__u8e3s4, Collection)) {
4265
+ if (n >= _this__u8e3s4.l())
4266
+ return toList_0(_this__u8e3s4);
4267
+ if (n === 1)
4268
+ return listOf(first(_this__u8e3s4));
4269
+ }
4270
+ var count = 0;
4271
+ var list = ArrayList_init_$Create$_0(n);
4272
+ var tmp0_iterator = _this__u8e3s4.r();
4273
+ $l$loop: while (tmp0_iterator.s()) {
4274
+ var item = tmp0_iterator.u();
4275
+ list.o(item);
4276
+ count = count + 1 | 0;
4277
+ if (count === n)
4278
+ break $l$loop;
4279
+ }
4280
+ return optimizeReadOnlyList(list);
4281
+ }
4254
4282
  function reversed(_this__u8e3s4) {
4255
4283
  var tmp;
4256
4284
  if (isInterface(_this__u8e3s4, Collection)) {
@@ -4368,34 +4396,6 @@ if (typeof Math.imul === 'undefined') {
4368
4396
  addAll_0(result, elements);
4369
4397
  return result;
4370
4398
  }
4371
- function take(_this__u8e3s4, n) {
4372
- // Inline function 'kotlin.require' call
4373
- // Inline function 'kotlin.contracts.contract' call
4374
- if (!(n >= 0)) {
4375
- // Inline function 'kotlin.collections.take.<anonymous>' call
4376
- var message = 'Requested element count ' + n + ' is less than zero.';
4377
- throw IllegalArgumentException_init_$Create$_0(toString_1(message));
4378
- }
4379
- if (n === 0)
4380
- return emptyList();
4381
- if (isInterface(_this__u8e3s4, Collection)) {
4382
- if (n >= _this__u8e3s4.l())
4383
- return toList_0(_this__u8e3s4);
4384
- if (n === 1)
4385
- return listOf(first(_this__u8e3s4));
4386
- }
4387
- var count = 0;
4388
- var list = ArrayList_init_$Create$_0(n);
4389
- var tmp0_iterator = _this__u8e3s4.r();
4390
- $l$loop: while (tmp0_iterator.s()) {
4391
- var item = tmp0_iterator.u();
4392
- list.o(item);
4393
- count = count + 1 | 0;
4394
- if (count === n)
4395
- break $l$loop;
4396
- }
4397
- return optimizeReadOnlyList(list);
4398
- }
4399
4399
  function withIndex$lambda_0($this_withIndex) {
4400
4400
  return function () {
4401
4401
  return $this_withIndex.r();
@@ -11244,174 +11244,175 @@ if (typeof Math.imul === 'undefined') {
11244
11244
  _.$_$.t6 = sort;
11245
11245
  _.$_$.u6 = sum;
11246
11246
  _.$_$.v6 = takeLast;
11247
- _.$_$.w6 = toBooleanArray;
11248
- _.$_$.x6 = toHashSet;
11249
- _.$_$.y6 = toList_1;
11250
- _.$_$.z6 = toList_0;
11251
- _.$_$.a7 = toList;
11252
- _.$_$.b7 = toMap;
11253
- _.$_$.c7 = toMutableList_0;
11254
- _.$_$.d7 = toMutableMap;
11255
- _.$_$.e7 = toSet_0;
11256
- _.$_$.f7 = toSet;
11257
- _.$_$.g7 = withDefault;
11258
- _.$_$.h7 = withIndex;
11259
- _.$_$.i7 = withIndex_0;
11260
- _.$_$.j7 = zip;
11261
- _.$_$.k7 = compareValues;
11262
- _.$_$.l7 = enumEntries;
11263
- _.$_$.m7 = println_0;
11264
- _.$_$.n7 = println;
11265
- _.$_$.o7 = print;
11266
- _.$_$.p7 = arrayIterator;
11267
- _.$_$.q7 = booleanArray;
11268
- _.$_$.r7 = captureStack;
11269
- _.$_$.s7 = charArrayOf;
11270
- _.$_$.t7 = charArray;
11271
- _.$_$.u7 = charSequenceGet;
11272
- _.$_$.v7 = charSequenceLength;
11273
- _.$_$.w7 = charSequenceSubSequence;
11274
- _.$_$.x7 = classMeta;
11275
- _.$_$.y7 = compareTo_0;
11276
- _.$_$.z7 = equals_0;
11277
- _.$_$.a8 = fillArrayVal;
11278
- _.$_$.b8 = getBooleanHashCode;
11279
- _.$_$.c8 = getNumberHashCode;
11280
- _.$_$.d8 = getPropertyCallableRef;
11281
- _.$_$.e8 = getStringHashCode;
11282
- _.$_$.f8 = hashCode;
11283
- _.$_$.g8 = interfaceMeta;
11284
- _.$_$.h8 = isArray;
11285
- _.$_$.i8 = isBooleanArray;
11286
- _.$_$.j8 = isByteArray;
11287
- _.$_$.k8 = isCharArray;
11288
- _.$_$.l8 = isCharSequence;
11289
- _.$_$.m8 = isDoubleArray;
11290
- _.$_$.n8 = isFloatArray;
11291
- _.$_$.o8 = isIntArray;
11292
- _.$_$.p8 = isInterface;
11293
- _.$_$.q8 = isLongArray;
11294
- _.$_$.r8 = isShortArray;
11295
- _.$_$.s8 = get_js;
11296
- _.$_$.t8 = json;
11297
- _.$_$.u8 = numberRangeToNumber;
11298
- _.$_$.v8 = numberToChar;
11299
- _.$_$.w8 = numberToDouble;
11300
- _.$_$.x8 = numberToInt;
11301
- _.$_$.y8 = numberToLong;
11302
- _.$_$.z8 = objectCreate;
11303
- _.$_$.a9 = objectMeta;
11304
- _.$_$.b9 = protoOf;
11305
- _.$_$.c9 = setMetadataFor;
11306
- _.$_$.d9 = toLong;
11307
- _.$_$.e9 = toString_1;
11308
- _.$_$.f9 = roundToInt;
11309
- _.$_$.g9 = withSign;
11310
- _.$_$.h9 = IntRange;
11311
- _.$_$.i9 = coerceAtLeast_1;
11312
- _.$_$.j9 = coerceAtLeast;
11313
- _.$_$.k9 = coerceAtLeast_0;
11314
- _.$_$.l9 = coerceAtMost;
11315
- _.$_$.m9 = coerceIn;
11316
- _.$_$.n9 = coerceIn_0;
11317
- _.$_$.o9 = until;
11318
- _.$_$.p9 = KClass;
11319
- _.$_$.q9 = KMutableProperty0;
11320
- _.$_$.r9 = KMutableProperty1;
11321
- _.$_$.s9 = KProperty0;
11322
- _.$_$.t9 = KProperty1;
11323
- _.$_$.u9 = KTypeParameter;
11324
- _.$_$.v9 = filter;
11325
- _.$_$.w9 = generateSequence_0;
11326
- _.$_$.x9 = generateSequence;
11327
- _.$_$.y9 = joinToString_1;
11328
- _.$_$.z9 = mapNotNull;
11329
- _.$_$.aa = map;
11330
- _.$_$.ba = maxOrNull_0;
11331
- _.$_$.ca = toList_2;
11332
- _.$_$.da = Regex;
11333
- _.$_$.ea = chunked;
11334
- _.$_$.fa = commonPrefixWith;
11335
- _.$_$.ga = concatToString;
11336
- _.$_$.ha = contains_5;
11337
- _.$_$.ia = contains_6;
11338
- _.$_$.ja = drop_0;
11339
- _.$_$.ka = endsWith;
11340
- _.$_$.la = equals;
11341
- _.$_$.ma = firstOrNull_0;
11342
- _.$_$.na = first_1;
11343
- _.$_$.oa = get;
11344
- _.$_$.pa = indexOf_6;
11345
- _.$_$.qa = indexOf_5;
11346
- _.$_$.ra = isBlank;
11347
- _.$_$.sa = isDigit;
11348
- _.$_$.ta = isHighSurrogate;
11349
- _.$_$.ua = isLowSurrogate;
11350
- _.$_$.va = isLowerCase;
11351
- _.$_$.wa = isWhitespace;
11352
- _.$_$.xa = get_lastIndex_2;
11353
- _.$_$.ya = lastIndexOf;
11354
- _.$_$.za = matches;
11355
- _.$_$.ab = padStart;
11356
- _.$_$.bb = prependIndent;
11357
- _.$_$.cb = removePrefix;
11358
- _.$_$.db = removeSuffix;
11359
- _.$_$.eb = removeSurrounding;
11360
- _.$_$.fb = repeat;
11361
- _.$_$.gb = replace;
11362
- _.$_$.hb = replace_0;
11363
- _.$_$.ib = slice_1;
11364
- _.$_$.jb = split_1;
11365
- _.$_$.kb = split;
11366
- _.$_$.lb = startsWith;
11367
- _.$_$.mb = startsWith_2;
11368
- _.$_$.nb = startsWith_1;
11369
- _.$_$.ob = substringBefore;
11370
- _.$_$.pb = take_1;
11371
- _.$_$.qb = titlecase;
11372
- _.$_$.rb = toIntOrNull;
11373
- _.$_$.sb = toInt_0;
11374
- _.$_$.tb = toInt;
11375
- _.$_$.ub = trimIndent;
11376
- _.$_$.vb = trimMargin;
11377
- _.$_$.wb = trimStart;
11378
- _.$_$.xb = trim;
11379
- _.$_$.yb = Duration;
11380
- _.$_$.zb = ArithmeticException;
11381
- _.$_$.ac = Char;
11382
- _.$_$.bc = ClassCastException;
11383
- _.$_$.cc = Comparable;
11384
- _.$_$.dc = Comparator;
11385
- _.$_$.ec = Enum;
11386
- _.$_$.fc = Exception;
11387
- _.$_$.gc = IllegalArgumentException;
11388
- _.$_$.hc = IllegalStateException;
11389
- _.$_$.ic = Long;
11390
- _.$_$.jc = Pair;
11391
- _.$_$.kc = Result;
11392
- _.$_$.lc = RuntimeException;
11393
- _.$_$.mc = THROW_CCE;
11394
- _.$_$.nc = Triple;
11395
- _.$_$.oc = UByteArray;
11396
- _.$_$.pc = UByte;
11397
- _.$_$.qc = UIntArray;
11398
- _.$_$.rc = UInt;
11399
- _.$_$.sc = ULongArray;
11400
- _.$_$.tc = ULong;
11401
- _.$_$.uc = UShortArray;
11402
- _.$_$.vc = UShort;
11403
- _.$_$.wc = Unit;
11404
- _.$_$.xc = addSuppressed;
11405
- _.$_$.yc = arrayOf;
11406
- _.$_$.zc = createFailure;
11407
- _.$_$.ad = ensureNotNull;
11408
- _.$_$.bd = isFinite_0;
11409
- _.$_$.cd = isFinite;
11410
- _.$_$.dd = lazy;
11411
- _.$_$.ed = lazy_0;
11412
- _.$_$.fd = noWhenBranchMatchedException;
11413
- _.$_$.gd = toString_0;
11414
- _.$_$.hd = to;
11247
+ _.$_$.w6 = take;
11248
+ _.$_$.x6 = toBooleanArray;
11249
+ _.$_$.y6 = toHashSet;
11250
+ _.$_$.z6 = toList_1;
11251
+ _.$_$.a7 = toList_0;
11252
+ _.$_$.b7 = toList;
11253
+ _.$_$.c7 = toMap;
11254
+ _.$_$.d7 = toMutableList_0;
11255
+ _.$_$.e7 = toMutableMap;
11256
+ _.$_$.f7 = toSet_0;
11257
+ _.$_$.g7 = toSet;
11258
+ _.$_$.h7 = withDefault;
11259
+ _.$_$.i7 = withIndex;
11260
+ _.$_$.j7 = withIndex_0;
11261
+ _.$_$.k7 = zip;
11262
+ _.$_$.l7 = compareValues;
11263
+ _.$_$.m7 = enumEntries;
11264
+ _.$_$.n7 = println_0;
11265
+ _.$_$.o7 = println;
11266
+ _.$_$.p7 = print;
11267
+ _.$_$.q7 = arrayIterator;
11268
+ _.$_$.r7 = booleanArray;
11269
+ _.$_$.s7 = captureStack;
11270
+ _.$_$.t7 = charArrayOf;
11271
+ _.$_$.u7 = charArray;
11272
+ _.$_$.v7 = charSequenceGet;
11273
+ _.$_$.w7 = charSequenceLength;
11274
+ _.$_$.x7 = charSequenceSubSequence;
11275
+ _.$_$.y7 = classMeta;
11276
+ _.$_$.z7 = compareTo_0;
11277
+ _.$_$.a8 = equals_0;
11278
+ _.$_$.b8 = fillArrayVal;
11279
+ _.$_$.c8 = getBooleanHashCode;
11280
+ _.$_$.d8 = getNumberHashCode;
11281
+ _.$_$.e8 = getPropertyCallableRef;
11282
+ _.$_$.f8 = getStringHashCode;
11283
+ _.$_$.g8 = hashCode;
11284
+ _.$_$.h8 = interfaceMeta;
11285
+ _.$_$.i8 = isArray;
11286
+ _.$_$.j8 = isBooleanArray;
11287
+ _.$_$.k8 = isByteArray;
11288
+ _.$_$.l8 = isCharArray;
11289
+ _.$_$.m8 = isCharSequence;
11290
+ _.$_$.n8 = isDoubleArray;
11291
+ _.$_$.o8 = isFloatArray;
11292
+ _.$_$.p8 = isIntArray;
11293
+ _.$_$.q8 = isInterface;
11294
+ _.$_$.r8 = isLongArray;
11295
+ _.$_$.s8 = isShortArray;
11296
+ _.$_$.t8 = get_js;
11297
+ _.$_$.u8 = json;
11298
+ _.$_$.v8 = numberRangeToNumber;
11299
+ _.$_$.w8 = numberToChar;
11300
+ _.$_$.x8 = numberToDouble;
11301
+ _.$_$.y8 = numberToInt;
11302
+ _.$_$.z8 = numberToLong;
11303
+ _.$_$.a9 = objectCreate;
11304
+ _.$_$.b9 = objectMeta;
11305
+ _.$_$.c9 = protoOf;
11306
+ _.$_$.d9 = setMetadataFor;
11307
+ _.$_$.e9 = toLong;
11308
+ _.$_$.f9 = toString_1;
11309
+ _.$_$.g9 = roundToInt;
11310
+ _.$_$.h9 = withSign;
11311
+ _.$_$.i9 = IntRange;
11312
+ _.$_$.j9 = coerceAtLeast_1;
11313
+ _.$_$.k9 = coerceAtLeast;
11314
+ _.$_$.l9 = coerceAtLeast_0;
11315
+ _.$_$.m9 = coerceAtMost;
11316
+ _.$_$.n9 = coerceIn;
11317
+ _.$_$.o9 = coerceIn_0;
11318
+ _.$_$.p9 = until;
11319
+ _.$_$.q9 = KClass;
11320
+ _.$_$.r9 = KMutableProperty0;
11321
+ _.$_$.s9 = KMutableProperty1;
11322
+ _.$_$.t9 = KProperty0;
11323
+ _.$_$.u9 = KProperty1;
11324
+ _.$_$.v9 = KTypeParameter;
11325
+ _.$_$.w9 = filter;
11326
+ _.$_$.x9 = generateSequence_0;
11327
+ _.$_$.y9 = generateSequence;
11328
+ _.$_$.z9 = joinToString_1;
11329
+ _.$_$.aa = mapNotNull;
11330
+ _.$_$.ba = map;
11331
+ _.$_$.ca = maxOrNull_0;
11332
+ _.$_$.da = toList_2;
11333
+ _.$_$.ea = Regex;
11334
+ _.$_$.fa = chunked;
11335
+ _.$_$.ga = commonPrefixWith;
11336
+ _.$_$.ha = concatToString;
11337
+ _.$_$.ia = contains_5;
11338
+ _.$_$.ja = contains_6;
11339
+ _.$_$.ka = drop_0;
11340
+ _.$_$.la = endsWith;
11341
+ _.$_$.ma = equals;
11342
+ _.$_$.na = firstOrNull_0;
11343
+ _.$_$.oa = first_1;
11344
+ _.$_$.pa = get;
11345
+ _.$_$.qa = indexOf_6;
11346
+ _.$_$.ra = indexOf_5;
11347
+ _.$_$.sa = isBlank;
11348
+ _.$_$.ta = isDigit;
11349
+ _.$_$.ua = isHighSurrogate;
11350
+ _.$_$.va = isLowSurrogate;
11351
+ _.$_$.wa = isLowerCase;
11352
+ _.$_$.xa = isWhitespace;
11353
+ _.$_$.ya = get_lastIndex_2;
11354
+ _.$_$.za = lastIndexOf;
11355
+ _.$_$.ab = matches;
11356
+ _.$_$.bb = padStart;
11357
+ _.$_$.cb = prependIndent;
11358
+ _.$_$.db = removePrefix;
11359
+ _.$_$.eb = removeSuffix;
11360
+ _.$_$.fb = removeSurrounding;
11361
+ _.$_$.gb = repeat;
11362
+ _.$_$.hb = replace;
11363
+ _.$_$.ib = replace_0;
11364
+ _.$_$.jb = slice_1;
11365
+ _.$_$.kb = split_1;
11366
+ _.$_$.lb = split;
11367
+ _.$_$.mb = startsWith;
11368
+ _.$_$.nb = startsWith_2;
11369
+ _.$_$.ob = startsWith_1;
11370
+ _.$_$.pb = substringBefore;
11371
+ _.$_$.qb = take_1;
11372
+ _.$_$.rb = titlecase;
11373
+ _.$_$.sb = toIntOrNull;
11374
+ _.$_$.tb = toInt_0;
11375
+ _.$_$.ub = toInt;
11376
+ _.$_$.vb = trimIndent;
11377
+ _.$_$.wb = trimMargin;
11378
+ _.$_$.xb = trimStart;
11379
+ _.$_$.yb = trim;
11380
+ _.$_$.zb = Duration;
11381
+ _.$_$.ac = ArithmeticException;
11382
+ _.$_$.bc = Char;
11383
+ _.$_$.cc = ClassCastException;
11384
+ _.$_$.dc = Comparable;
11385
+ _.$_$.ec = Comparator;
11386
+ _.$_$.fc = Enum;
11387
+ _.$_$.gc = Exception;
11388
+ _.$_$.hc = IllegalArgumentException;
11389
+ _.$_$.ic = IllegalStateException;
11390
+ _.$_$.jc = Long;
11391
+ _.$_$.kc = Pair;
11392
+ _.$_$.lc = Result;
11393
+ _.$_$.mc = RuntimeException;
11394
+ _.$_$.nc = THROW_CCE;
11395
+ _.$_$.oc = Triple;
11396
+ _.$_$.pc = UByteArray;
11397
+ _.$_$.qc = UByte;
11398
+ _.$_$.rc = UIntArray;
11399
+ _.$_$.sc = UInt;
11400
+ _.$_$.tc = ULongArray;
11401
+ _.$_$.uc = ULong;
11402
+ _.$_$.vc = UShortArray;
11403
+ _.$_$.wc = UShort;
11404
+ _.$_$.xc = Unit;
11405
+ _.$_$.yc = addSuppressed;
11406
+ _.$_$.zc = arrayOf;
11407
+ _.$_$.ad = createFailure;
11408
+ _.$_$.bd = ensureNotNull;
11409
+ _.$_$.cd = isFinite_0;
11410
+ _.$_$.dd = isFinite;
11411
+ _.$_$.ed = lazy;
11412
+ _.$_$.fd = lazy_0;
11413
+ _.$_$.gd = noWhenBranchMatchedException;
11414
+ _.$_$.hd = toString_0;
11415
+ _.$_$.id = to;
11415
11416
  //endregion
11416
11417
  return _;
11417
11418
  }(module.exports));