git-digger 1.2.7 → 1.2.9

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,16 @@ 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.log10 === 'undefined') {
36
+ Math.log10 = function (x) {
37
+ return Math.log(x) * Math.LOG10E;
38
+ };
39
+ }
40
+ if (typeof Math.log2 === 'undefined') {
41
+ Math.log2 = function (x) {
42
+ return Math.log(x) * Math.LOG2E;
43
+ };
44
+ }
35
45
  if (typeof Math.clz32 === 'undefined') {
36
46
  Math.clz32 = function (log, LN2) {
37
47
  return function (x) {
@@ -43,15 +53,11 @@ if (typeof Math.clz32 === 'undefined') {
43
53
  };
44
54
  }(Math.log, Math.LN2);
45
55
  }
46
- if (typeof Math.log10 === 'undefined') {
47
- Math.log10 = function (x) {
48
- return Math.log(x) * Math.LOG10E;
49
- };
50
- }
51
- if (typeof Math.log2 === 'undefined') {
52
- Math.log2 = function (x) {
53
- return Math.log(x) * Math.LOG2E;
54
- };
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
+ }});
55
61
  }
56
62
  if (typeof String.prototype.endsWith === 'undefined') {
57
63
  Object.defineProperty(String.prototype, 'endsWith', {value: function (searchString, position) {
@@ -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, MutableIterable, Collection]);
102
+ setMetadataFor(AbstractMutableCollection, 'AbstractMutableCollection', classMeta, AbstractCollection, [AbstractCollection, Collection, MutableIterable]);
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, MutableIterable, Collection]);
106
+ setMetadataFor(MutableList, 'MutableList', interfaceMeta, VOID, [List, Collection, MutableIterable]);
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, MutableIterable, Collection]);
115
+ setMetadataFor(MutableSet, 'MutableSet', interfaceMeta, VOID, [Set, Collection, MutableIterable]);
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$);
@@ -2300,7 +2300,7 @@ if (typeof Math.imul === 'undefined') {
2300
2300
  var classifierName = kClass == null ? toString_1(this.p6_1) : !(kClass.e6() == null) ? kClass.e6() : '(non-denotable type)';
2301
2301
  var args = this.q6_1.y() ? '' : joinToString_0(this.q6_1, ', ', '<', '>');
2302
2302
  var nullable = this.r6_1 ? '?' : '';
2303
- return plus_3(classifierName, args) + nullable;
2303
+ return plus_4(classifierName, args) + nullable;
2304
2304
  };
2305
2305
  function get_functionClasses() {
2306
2306
  _init_properties_primitives_kt__3fums4();
@@ -4296,6 +4296,23 @@ if (typeof Math.imul === 'undefined') {
4296
4296
  sort(this_1);
4297
4297
  return this_1;
4298
4298
  }
4299
+ function minus(_this__u8e3s4, elements) {
4300
+ var other = convertToListIfNotCollection(elements);
4301
+ if (other.y())
4302
+ return toList_0(_this__u8e3s4);
4303
+ // Inline function 'kotlin.collections.filterNot' call
4304
+ // Inline function 'kotlin.collections.filterNotTo' call
4305
+ var destination = ArrayList_init_$Create$();
4306
+ var tmp0_iterator = _this__u8e3s4.r();
4307
+ while (tmp0_iterator.s()) {
4308
+ var element = tmp0_iterator.u();
4309
+ // Inline function 'kotlin.collections.minus.<anonymous>' call
4310
+ if (!other.n(element)) {
4311
+ destination.o(element);
4312
+ }
4313
+ }
4314
+ return destination;
4315
+ }
4299
4316
  function zip(_this__u8e3s4, other) {
4300
4317
  // Inline function 'kotlin.collections.zip' call
4301
4318
  var first = _this__u8e3s4.r();
@@ -4580,7 +4597,7 @@ if (typeof Math.imul === 'undefined') {
4580
4597
  function filterNotNull$lambda(it) {
4581
4598
  return it == null;
4582
4599
  }
4583
- function minus(_this__u8e3s4, elements) {
4600
+ function minus_0(_this__u8e3s4, elements) {
4584
4601
  var other = convertToListIfNotCollection(elements);
4585
4602
  if (other.y())
4586
4603
  return toSet_0(_this__u8e3s4);
@@ -4618,6 +4635,12 @@ if (typeof Math.imul === 'undefined') {
4618
4635
  addAll(result, elements);
4619
4636
  return result;
4620
4637
  }
4638
+ function plus_3(_this__u8e3s4, element) {
4639
+ var result = LinkedHashSet_init_$Create$_1(mapCapacity(_this__u8e3s4.l() + 1 | 0));
4640
+ result.v(_this__u8e3s4);
4641
+ result.o(element);
4642
+ return result;
4643
+ }
4621
4644
  function slice_1(_this__u8e3s4, indices) {
4622
4645
  if (indices.y())
4623
4646
  return '';
@@ -4829,7 +4852,7 @@ if (typeof Math.imul === 'undefined') {
4829
4852
  var tmp1_elvis_lhs = _this__u8e3s4 == null ? null : toString_1(_this__u8e3s4);
4830
4853
  return tmp1_elvis_lhs == null ? 'null' : tmp1_elvis_lhs;
4831
4854
  }
4832
- function plus_3(_this__u8e3s4, other) {
4855
+ function plus_4(_this__u8e3s4, other) {
4833
4856
  var tmp3_elvis_lhs = _this__u8e3s4 == null ? null : toString_1(_this__u8e3s4);
4834
4857
  var tmp = tmp3_elvis_lhs == null ? 'null' : tmp3_elvis_lhs;
4835
4858
  var tmp1_elvis_lhs = other == null ? null : toString_1(other);
@@ -11145,195 +11168,197 @@ if (typeof Math.imul === 'undefined') {
11145
11168
  _.$_$.t5 = mapCapacity;
11146
11169
  _.$_$.u5 = mapOf_0;
11147
11170
  _.$_$.v5 = maxOrNull;
11148
- _.$_$.w5 = minus;
11149
- _.$_$.x5 = mutableListOf;
11150
- _.$_$.y5 = mutableMapOf;
11151
- _.$_$.z5 = plus_1;
11152
- _.$_$.a6 = plus_2;
11153
- _.$_$.b6 = plus;
11154
- _.$_$.c6 = plus_0;
11155
- _.$_$.d6 = removeLastOrNull;
11156
- _.$_$.e6 = removeLast;
11157
- _.$_$.f6 = reversed;
11158
- _.$_$.g6 = setOf;
11159
- _.$_$.h6 = setOf_0;
11160
- _.$_$.i6 = single_0;
11161
- _.$_$.j6 = slice_0;
11162
- _.$_$.k6 = slice;
11163
- _.$_$.l6 = sortWith;
11164
- _.$_$.m6 = sortedWith;
11165
- _.$_$.n6 = sorted;
11166
- _.$_$.o6 = sort;
11167
- _.$_$.p6 = sum;
11168
- _.$_$.q6 = takeLast;
11169
- _.$_$.r6 = toBooleanArray;
11170
- _.$_$.s6 = toHashSet;
11171
- _.$_$.t6 = toList_1;
11172
- _.$_$.u6 = toList_0;
11173
- _.$_$.v6 = toList;
11174
- _.$_$.w6 = toMap;
11175
- _.$_$.x6 = toMutableList_0;
11176
- _.$_$.y6 = toMutableMap;
11177
- _.$_$.z6 = toSet_0;
11178
- _.$_$.a7 = toSet;
11179
- _.$_$.b7 = withDefault;
11180
- _.$_$.c7 = withIndex;
11181
- _.$_$.d7 = withIndex_0;
11182
- _.$_$.e7 = zip;
11183
- _.$_$.f7 = compareValues;
11184
- _.$_$.g7 = enumEntries;
11185
- _.$_$.h7 = println_0;
11186
- _.$_$.i7 = println;
11187
- _.$_$.j7 = print;
11188
- _.$_$.k7 = arrayIterator;
11189
- _.$_$.l7 = booleanArray;
11190
- _.$_$.m7 = captureStack;
11191
- _.$_$.n7 = charArrayOf;
11192
- _.$_$.o7 = charArray;
11193
- _.$_$.p7 = charSequenceGet;
11194
- _.$_$.q7 = charSequenceLength;
11195
- _.$_$.r7 = charSequenceSubSequence;
11196
- _.$_$.s7 = classMeta;
11197
- _.$_$.t7 = compareTo_0;
11198
- _.$_$.u7 = equals_0;
11199
- _.$_$.v7 = fillArrayVal;
11200
- _.$_$.w7 = getBooleanHashCode;
11201
- _.$_$.x7 = getNumberHashCode;
11202
- _.$_$.y7 = getPropertyCallableRef;
11203
- _.$_$.z7 = getStringHashCode;
11204
- _.$_$.a8 = hashCode;
11205
- _.$_$.b8 = interfaceMeta;
11206
- _.$_$.c8 = isArray;
11207
- _.$_$.d8 = isBooleanArray;
11208
- _.$_$.e8 = isByteArray;
11209
- _.$_$.f8 = isCharArray;
11210
- _.$_$.g8 = isCharSequence;
11211
- _.$_$.h8 = isDoubleArray;
11212
- _.$_$.i8 = isFloatArray;
11213
- _.$_$.j8 = isIntArray;
11214
- _.$_$.k8 = isInterface;
11215
- _.$_$.l8 = isLongArray;
11216
- _.$_$.m8 = isShortArray;
11217
- _.$_$.n8 = get_js;
11218
- _.$_$.o8 = json;
11219
- _.$_$.p8 = numberRangeToNumber;
11220
- _.$_$.q8 = numberToChar;
11221
- _.$_$.r8 = numberToDouble;
11222
- _.$_$.s8 = numberToInt;
11223
- _.$_$.t8 = numberToLong;
11224
- _.$_$.u8 = objectCreate;
11225
- _.$_$.v8 = objectMeta;
11226
- _.$_$.w8 = protoOf;
11227
- _.$_$.x8 = setMetadataFor;
11228
- _.$_$.y8 = toLong;
11229
- _.$_$.z8 = toString_1;
11230
- _.$_$.a9 = roundToInt;
11231
- _.$_$.b9 = withSign;
11232
- _.$_$.c9 = IntRange;
11233
- _.$_$.d9 = coerceAtLeast_1;
11234
- _.$_$.e9 = coerceAtLeast;
11235
- _.$_$.f9 = coerceAtLeast_0;
11236
- _.$_$.g9 = coerceAtMost;
11237
- _.$_$.h9 = coerceIn;
11238
- _.$_$.i9 = coerceIn_0;
11239
- _.$_$.j9 = until;
11240
- _.$_$.k9 = KClass;
11241
- _.$_$.l9 = KMutableProperty0;
11242
- _.$_$.m9 = KMutableProperty1;
11243
- _.$_$.n9 = KProperty0;
11244
- _.$_$.o9 = KProperty1;
11245
- _.$_$.p9 = KTypeParameter;
11246
- _.$_$.q9 = filter;
11247
- _.$_$.r9 = generateSequence_0;
11248
- _.$_$.s9 = generateSequence;
11249
- _.$_$.t9 = joinToString_1;
11250
- _.$_$.u9 = mapNotNull;
11251
- _.$_$.v9 = map;
11252
- _.$_$.w9 = maxOrNull_0;
11253
- _.$_$.x9 = toList_2;
11254
- _.$_$.y9 = Regex;
11255
- _.$_$.z9 = chunked;
11256
- _.$_$.aa = commonPrefixWith;
11257
- _.$_$.ba = concatToString;
11258
- _.$_$.ca = contains_5;
11259
- _.$_$.da = contains_6;
11260
- _.$_$.ea = drop_0;
11261
- _.$_$.fa = endsWith;
11262
- _.$_$.ga = equals;
11263
- _.$_$.ha = firstOrNull_0;
11264
- _.$_$.ia = first_1;
11265
- _.$_$.ja = get;
11266
- _.$_$.ka = indexOf_6;
11267
- _.$_$.la = indexOf_5;
11268
- _.$_$.ma = isBlank;
11269
- _.$_$.na = isDigit;
11270
- _.$_$.oa = isHighSurrogate;
11271
- _.$_$.pa = isLowSurrogate;
11272
- _.$_$.qa = isLowerCase;
11273
- _.$_$.ra = isWhitespace;
11274
- _.$_$.sa = get_lastIndex_2;
11275
- _.$_$.ta = lastIndexOf;
11276
- _.$_$.ua = matches;
11277
- _.$_$.va = padStart;
11278
- _.$_$.wa = prependIndent;
11279
- _.$_$.xa = removePrefix;
11280
- _.$_$.ya = removeSuffix;
11281
- _.$_$.za = removeSurrounding;
11282
- _.$_$.ab = repeat;
11283
- _.$_$.bb = replace;
11284
- _.$_$.cb = replace_0;
11285
- _.$_$.db = slice_1;
11286
- _.$_$.eb = split_1;
11287
- _.$_$.fb = split;
11288
- _.$_$.gb = startsWith;
11289
- _.$_$.hb = startsWith_2;
11290
- _.$_$.ib = startsWith_1;
11291
- _.$_$.jb = substringBefore;
11292
- _.$_$.kb = take_1;
11293
- _.$_$.lb = titlecase;
11294
- _.$_$.mb = toIntOrNull;
11295
- _.$_$.nb = toInt_0;
11296
- _.$_$.ob = toInt;
11297
- _.$_$.pb = trimIndent;
11298
- _.$_$.qb = trimMargin;
11299
- _.$_$.rb = trimStart;
11300
- _.$_$.sb = trim;
11301
- _.$_$.tb = Duration;
11302
- _.$_$.ub = ArithmeticException;
11303
- _.$_$.vb = Char;
11304
- _.$_$.wb = ClassCastException;
11305
- _.$_$.xb = Comparable;
11306
- _.$_$.yb = Comparator;
11307
- _.$_$.zb = Enum;
11308
- _.$_$.ac = Exception;
11309
- _.$_$.bc = IllegalArgumentException;
11310
- _.$_$.cc = IllegalStateException;
11311
- _.$_$.dc = Long;
11312
- _.$_$.ec = Pair;
11313
- _.$_$.fc = Result;
11314
- _.$_$.gc = RuntimeException;
11315
- _.$_$.hc = THROW_CCE;
11316
- _.$_$.ic = Triple;
11317
- _.$_$.jc = UByteArray;
11318
- _.$_$.kc = UByte;
11319
- _.$_$.lc = UIntArray;
11320
- _.$_$.mc = UInt;
11321
- _.$_$.nc = ULongArray;
11322
- _.$_$.oc = ULong;
11323
- _.$_$.pc = UShortArray;
11324
- _.$_$.qc = UShort;
11325
- _.$_$.rc = Unit;
11326
- _.$_$.sc = addSuppressed;
11327
- _.$_$.tc = arrayOf;
11328
- _.$_$.uc = createFailure;
11329
- _.$_$.vc = ensureNotNull;
11330
- _.$_$.wc = isFinite_0;
11331
- _.$_$.xc = isFinite;
11332
- _.$_$.yc = lazy;
11333
- _.$_$.zc = lazy_0;
11334
- _.$_$.ad = noWhenBranchMatchedException;
11335
- _.$_$.bd = toString_0;
11336
- _.$_$.cd = to;
11171
+ _.$_$.w5 = minus_0;
11172
+ _.$_$.x5 = minus;
11173
+ _.$_$.y5 = mutableListOf;
11174
+ _.$_$.z5 = mutableMapOf;
11175
+ _.$_$.a6 = plus_1;
11176
+ _.$_$.b6 = plus_2;
11177
+ _.$_$.c6 = plus_3;
11178
+ _.$_$.d6 = plus;
11179
+ _.$_$.e6 = plus_0;
11180
+ _.$_$.f6 = removeLastOrNull;
11181
+ _.$_$.g6 = removeLast;
11182
+ _.$_$.h6 = reversed;
11183
+ _.$_$.i6 = setOf;
11184
+ _.$_$.j6 = setOf_0;
11185
+ _.$_$.k6 = single_0;
11186
+ _.$_$.l6 = slice_0;
11187
+ _.$_$.m6 = slice;
11188
+ _.$_$.n6 = sortWith;
11189
+ _.$_$.o6 = sortedWith;
11190
+ _.$_$.p6 = sorted;
11191
+ _.$_$.q6 = sort;
11192
+ _.$_$.r6 = sum;
11193
+ _.$_$.s6 = takeLast;
11194
+ _.$_$.t6 = toBooleanArray;
11195
+ _.$_$.u6 = toHashSet;
11196
+ _.$_$.v6 = toList_1;
11197
+ _.$_$.w6 = toList_0;
11198
+ _.$_$.x6 = toList;
11199
+ _.$_$.y6 = toMap;
11200
+ _.$_$.z6 = toMutableList_0;
11201
+ _.$_$.a7 = toMutableMap;
11202
+ _.$_$.b7 = toSet_0;
11203
+ _.$_$.c7 = toSet;
11204
+ _.$_$.d7 = withDefault;
11205
+ _.$_$.e7 = withIndex;
11206
+ _.$_$.f7 = withIndex_0;
11207
+ _.$_$.g7 = zip;
11208
+ _.$_$.h7 = compareValues;
11209
+ _.$_$.i7 = enumEntries;
11210
+ _.$_$.j7 = println_0;
11211
+ _.$_$.k7 = println;
11212
+ _.$_$.l7 = print;
11213
+ _.$_$.m7 = arrayIterator;
11214
+ _.$_$.n7 = booleanArray;
11215
+ _.$_$.o7 = captureStack;
11216
+ _.$_$.p7 = charArrayOf;
11217
+ _.$_$.q7 = charArray;
11218
+ _.$_$.r7 = charSequenceGet;
11219
+ _.$_$.s7 = charSequenceLength;
11220
+ _.$_$.t7 = charSequenceSubSequence;
11221
+ _.$_$.u7 = classMeta;
11222
+ _.$_$.v7 = compareTo_0;
11223
+ _.$_$.w7 = equals_0;
11224
+ _.$_$.x7 = fillArrayVal;
11225
+ _.$_$.y7 = getBooleanHashCode;
11226
+ _.$_$.z7 = getNumberHashCode;
11227
+ _.$_$.a8 = getPropertyCallableRef;
11228
+ _.$_$.b8 = getStringHashCode;
11229
+ _.$_$.c8 = hashCode;
11230
+ _.$_$.d8 = interfaceMeta;
11231
+ _.$_$.e8 = isArray;
11232
+ _.$_$.f8 = isBooleanArray;
11233
+ _.$_$.g8 = isByteArray;
11234
+ _.$_$.h8 = isCharArray;
11235
+ _.$_$.i8 = isCharSequence;
11236
+ _.$_$.j8 = isDoubleArray;
11237
+ _.$_$.k8 = isFloatArray;
11238
+ _.$_$.l8 = isIntArray;
11239
+ _.$_$.m8 = isInterface;
11240
+ _.$_$.n8 = isLongArray;
11241
+ _.$_$.o8 = isShortArray;
11242
+ _.$_$.p8 = get_js;
11243
+ _.$_$.q8 = json;
11244
+ _.$_$.r8 = numberRangeToNumber;
11245
+ _.$_$.s8 = numberToChar;
11246
+ _.$_$.t8 = numberToDouble;
11247
+ _.$_$.u8 = numberToInt;
11248
+ _.$_$.v8 = numberToLong;
11249
+ _.$_$.w8 = objectCreate;
11250
+ _.$_$.x8 = objectMeta;
11251
+ _.$_$.y8 = protoOf;
11252
+ _.$_$.z8 = setMetadataFor;
11253
+ _.$_$.a9 = toLong;
11254
+ _.$_$.b9 = toString_1;
11255
+ _.$_$.c9 = roundToInt;
11256
+ _.$_$.d9 = withSign;
11257
+ _.$_$.e9 = IntRange;
11258
+ _.$_$.f9 = coerceAtLeast_1;
11259
+ _.$_$.g9 = coerceAtLeast;
11260
+ _.$_$.h9 = coerceAtLeast_0;
11261
+ _.$_$.i9 = coerceAtMost;
11262
+ _.$_$.j9 = coerceIn;
11263
+ _.$_$.k9 = coerceIn_0;
11264
+ _.$_$.l9 = until;
11265
+ _.$_$.m9 = KClass;
11266
+ _.$_$.n9 = KMutableProperty0;
11267
+ _.$_$.o9 = KMutableProperty1;
11268
+ _.$_$.p9 = KProperty0;
11269
+ _.$_$.q9 = KProperty1;
11270
+ _.$_$.r9 = KTypeParameter;
11271
+ _.$_$.s9 = filter;
11272
+ _.$_$.t9 = generateSequence_0;
11273
+ _.$_$.u9 = generateSequence;
11274
+ _.$_$.v9 = joinToString_1;
11275
+ _.$_$.w9 = mapNotNull;
11276
+ _.$_$.x9 = map;
11277
+ _.$_$.y9 = maxOrNull_0;
11278
+ _.$_$.z9 = toList_2;
11279
+ _.$_$.aa = Regex;
11280
+ _.$_$.ba = chunked;
11281
+ _.$_$.ca = commonPrefixWith;
11282
+ _.$_$.da = concatToString;
11283
+ _.$_$.ea = contains_5;
11284
+ _.$_$.fa = contains_6;
11285
+ _.$_$.ga = drop_0;
11286
+ _.$_$.ha = endsWith;
11287
+ _.$_$.ia = equals;
11288
+ _.$_$.ja = firstOrNull_0;
11289
+ _.$_$.ka = first_1;
11290
+ _.$_$.la = get;
11291
+ _.$_$.ma = indexOf_6;
11292
+ _.$_$.na = indexOf_5;
11293
+ _.$_$.oa = isBlank;
11294
+ _.$_$.pa = isDigit;
11295
+ _.$_$.qa = isHighSurrogate;
11296
+ _.$_$.ra = isLowSurrogate;
11297
+ _.$_$.sa = isLowerCase;
11298
+ _.$_$.ta = isWhitespace;
11299
+ _.$_$.ua = get_lastIndex_2;
11300
+ _.$_$.va = lastIndexOf;
11301
+ _.$_$.wa = matches;
11302
+ _.$_$.xa = padStart;
11303
+ _.$_$.ya = prependIndent;
11304
+ _.$_$.za = removePrefix;
11305
+ _.$_$.ab = removeSuffix;
11306
+ _.$_$.bb = removeSurrounding;
11307
+ _.$_$.cb = repeat;
11308
+ _.$_$.db = replace;
11309
+ _.$_$.eb = replace_0;
11310
+ _.$_$.fb = slice_1;
11311
+ _.$_$.gb = split_1;
11312
+ _.$_$.hb = split;
11313
+ _.$_$.ib = startsWith;
11314
+ _.$_$.jb = startsWith_2;
11315
+ _.$_$.kb = startsWith_1;
11316
+ _.$_$.lb = substringBefore;
11317
+ _.$_$.mb = take_1;
11318
+ _.$_$.nb = titlecase;
11319
+ _.$_$.ob = toIntOrNull;
11320
+ _.$_$.pb = toInt_0;
11321
+ _.$_$.qb = toInt;
11322
+ _.$_$.rb = trimIndent;
11323
+ _.$_$.sb = trimMargin;
11324
+ _.$_$.tb = trimStart;
11325
+ _.$_$.ub = trim;
11326
+ _.$_$.vb = Duration;
11327
+ _.$_$.wb = ArithmeticException;
11328
+ _.$_$.xb = Char;
11329
+ _.$_$.yb = ClassCastException;
11330
+ _.$_$.zb = Comparable;
11331
+ _.$_$.ac = Comparator;
11332
+ _.$_$.bc = Enum;
11333
+ _.$_$.cc = Exception;
11334
+ _.$_$.dc = IllegalArgumentException;
11335
+ _.$_$.ec = IllegalStateException;
11336
+ _.$_$.fc = Long;
11337
+ _.$_$.gc = Pair;
11338
+ _.$_$.hc = Result;
11339
+ _.$_$.ic = RuntimeException;
11340
+ _.$_$.jc = THROW_CCE;
11341
+ _.$_$.kc = Triple;
11342
+ _.$_$.lc = UByteArray;
11343
+ _.$_$.mc = UByte;
11344
+ _.$_$.nc = UIntArray;
11345
+ _.$_$.oc = UInt;
11346
+ _.$_$.pc = ULongArray;
11347
+ _.$_$.qc = ULong;
11348
+ _.$_$.rc = UShortArray;
11349
+ _.$_$.sc = UShort;
11350
+ _.$_$.tc = Unit;
11351
+ _.$_$.uc = addSuppressed;
11352
+ _.$_$.vc = arrayOf;
11353
+ _.$_$.wc = createFailure;
11354
+ _.$_$.xc = ensureNotNull;
11355
+ _.$_$.yc = isFinite_0;
11356
+ _.$_$.zc = isFinite;
11357
+ _.$_$.ad = lazy;
11358
+ _.$_$.bd = lazy_0;
11359
+ _.$_$.cd = noWhenBranchMatchedException;
11360
+ _.$_$.dd = toString_0;
11361
+ _.$_$.ed = to;
11337
11362
  //endregion
11338
11363
  return _;
11339
11364
  }(module.exports));