@guardian/feast-multiplatform-library 7.0.0 → 7.1.1

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.
@@ -48,12 +48,6 @@ if (typeof Math.clz32 === 'undefined') {
48
48
  };
49
49
  }(Math.log, Math.LN2);
50
50
  }
51
- if (typeof String.prototype.startsWith === 'undefined') {
52
- Object.defineProperty(String.prototype, 'startsWith', {value: function (searchString, position) {
53
- position = position || 0;
54
- return this.lastIndexOf(searchString, position) === position;
55
- }});
56
- }
57
51
  if (typeof String.prototype.endsWith === 'undefined') {
58
52
  Object.defineProperty(String.prototype, 'endsWith', {value: function (searchString, position) {
59
53
  var subjectString = this.toString();
@@ -65,6 +59,12 @@ if (typeof String.prototype.endsWith === 'undefined') {
65
59
  return lastIndex !== -1 && lastIndex === position;
66
60
  }});
67
61
  }
62
+ if (typeof String.prototype.startsWith === 'undefined') {
63
+ Object.defineProperty(String.prototype, 'startsWith', {value: function (searchString, position) {
64
+ position = position || 0;
65
+ return this.lastIndexOf(searchString, position) === position;
66
+ }});
67
+ }
68
68
  //endregion
69
69
  (function (_) {
70
70
  'use strict';
@@ -8176,50 +8176,10 @@ if (typeof String.prototype.endsWith === 'undefined') {
8176
8176
  while (inductionVariable < length);
8177
8177
  return isNegative ? result : negate(result);
8178
8178
  }
8179
- function indexOfAny(_this__u8e3s4, chars, startIndex, ignoreCase) {
8180
- startIndex = startIndex === VOID ? 0 : startIndex;
8181
- ignoreCase = ignoreCase === VOID ? false : ignoreCase;
8182
- var tmp;
8183
- if (!ignoreCase && chars.length === 1) {
8184
- tmp = typeof _this__u8e3s4 === 'string';
8185
- } else {
8186
- tmp = false;
8187
- }
8188
- if (tmp) {
8189
- var char = single(chars);
8190
- // Inline function 'kotlin.text.nativeIndexOf' call
8191
- // Inline function 'kotlin.text.nativeIndexOf' call
8192
- var str = toString(char);
8193
- // Inline function 'kotlin.js.asDynamic' call
8194
- return _this__u8e3s4.indexOf(str, startIndex);
8195
- }
8196
- var inductionVariable = coerceAtLeast(startIndex, 0);
8197
- var last = get_lastIndex_3(_this__u8e3s4);
8198
- if (inductionVariable <= last)
8199
- do {
8200
- var index = inductionVariable;
8201
- inductionVariable = inductionVariable + 1 | 0;
8202
- var charAtIndex = charSequenceGet(_this__u8e3s4, index);
8203
- var tmp$ret$4;
8204
- $l$block: {
8205
- // Inline function 'kotlin.collections.any' call
8206
- var inductionVariable_0 = 0;
8207
- var last_0 = chars.length;
8208
- while (inductionVariable_0 < last_0) {
8209
- var element = chars[inductionVariable_0];
8210
- inductionVariable_0 = inductionVariable_0 + 1 | 0;
8211
- if (equals_1(element, charAtIndex, ignoreCase)) {
8212
- tmp$ret$4 = true;
8213
- break $l$block;
8214
- }
8215
- }
8216
- tmp$ret$4 = false;
8217
- }
8218
- if (tmp$ret$4)
8219
- return index;
8220
- }
8221
- while (!(index === last));
8222
- return -1;
8179
+ function substringBefore(_this__u8e3s4, delimiter, missingDelimiterValue) {
8180
+ missingDelimiterValue = missingDelimiterValue === VOID ? _this__u8e3s4 : missingDelimiterValue;
8181
+ var index = indexOf_1(_this__u8e3s4, delimiter);
8182
+ return index === -1 ? missingDelimiterValue : substring(_this__u8e3s4, 0, index);
8223
8183
  }
8224
8184
  function padStart(_this__u8e3s4, length, padChar) {
8225
8185
  padChar = padChar === VOID ? _Char___init__impl__6a9atx(32) : padChar;
@@ -8273,8 +8233,24 @@ if (typeof String.prototype.endsWith === 'undefined') {
8273
8233
  }
8274
8234
  return tmp$ret$1;
8275
8235
  }
8276
- function get_lastIndex_3(_this__u8e3s4) {
8277
- return charSequenceLength(_this__u8e3s4) - 1 | 0;
8236
+ function indexOf_1(_this__u8e3s4, string, startIndex, ignoreCase) {
8237
+ startIndex = startIndex === VOID ? 0 : startIndex;
8238
+ ignoreCase = ignoreCase === VOID ? false : ignoreCase;
8239
+ var tmp;
8240
+ var tmp_0;
8241
+ if (ignoreCase) {
8242
+ tmp_0 = true;
8243
+ } else {
8244
+ tmp_0 = !(typeof _this__u8e3s4 === 'string');
8245
+ }
8246
+ if (tmp_0) {
8247
+ tmp = indexOf_2(_this__u8e3s4, string, startIndex, charSequenceLength(_this__u8e3s4), ignoreCase);
8248
+ } else {
8249
+ // Inline function 'kotlin.text.nativeIndexOf' call
8250
+ // Inline function 'kotlin.js.asDynamic' call
8251
+ tmp = _this__u8e3s4.indexOf(string, startIndex);
8252
+ }
8253
+ return tmp;
8278
8254
  }
8279
8255
  function padStart_0(_this__u8e3s4, length, padChar) {
8280
8256
  padChar = padChar === VOID ? _Char___init__impl__6a9atx(32) : padChar;
@@ -8295,6 +8271,90 @@ if (typeof String.prototype.endsWith === 'undefined') {
8295
8271
  sb.g(_this__u8e3s4);
8296
8272
  return sb;
8297
8273
  }
8274
+ function indexOfAny(_this__u8e3s4, chars, startIndex, ignoreCase) {
8275
+ startIndex = startIndex === VOID ? 0 : startIndex;
8276
+ ignoreCase = ignoreCase === VOID ? false : ignoreCase;
8277
+ var tmp;
8278
+ if (!ignoreCase && chars.length === 1) {
8279
+ tmp = typeof _this__u8e3s4 === 'string';
8280
+ } else {
8281
+ tmp = false;
8282
+ }
8283
+ if (tmp) {
8284
+ var char = single(chars);
8285
+ // Inline function 'kotlin.text.nativeIndexOf' call
8286
+ // Inline function 'kotlin.text.nativeIndexOf' call
8287
+ var str = toString(char);
8288
+ // Inline function 'kotlin.js.asDynamic' call
8289
+ return _this__u8e3s4.indexOf(str, startIndex);
8290
+ }
8291
+ var inductionVariable = coerceAtLeast(startIndex, 0);
8292
+ var last = get_lastIndex_3(_this__u8e3s4);
8293
+ if (inductionVariable <= last)
8294
+ do {
8295
+ var index = inductionVariable;
8296
+ inductionVariable = inductionVariable + 1 | 0;
8297
+ var charAtIndex = charSequenceGet(_this__u8e3s4, index);
8298
+ var tmp$ret$4;
8299
+ $l$block: {
8300
+ // Inline function 'kotlin.collections.any' call
8301
+ var inductionVariable_0 = 0;
8302
+ var last_0 = chars.length;
8303
+ while (inductionVariable_0 < last_0) {
8304
+ var element = chars[inductionVariable_0];
8305
+ inductionVariable_0 = inductionVariable_0 + 1 | 0;
8306
+ if (equals_1(element, charAtIndex, ignoreCase)) {
8307
+ tmp$ret$4 = true;
8308
+ break $l$block;
8309
+ }
8310
+ }
8311
+ tmp$ret$4 = false;
8312
+ }
8313
+ if (tmp$ret$4)
8314
+ return index;
8315
+ }
8316
+ while (!(index === last));
8317
+ return -1;
8318
+ }
8319
+ function indexOf_2(_this__u8e3s4, other, startIndex, endIndex, ignoreCase, last) {
8320
+ last = last === VOID ? false : last;
8321
+ var indices = !last ? numberRangeToNumber(coerceAtLeast(startIndex, 0), coerceAtMost(endIndex, charSequenceLength(_this__u8e3s4))) : downTo(coerceAtMost(startIndex, get_lastIndex_3(_this__u8e3s4)), coerceAtLeast(endIndex, 0));
8322
+ var tmp;
8323
+ if (typeof _this__u8e3s4 === 'string') {
8324
+ tmp = typeof other === 'string';
8325
+ } else {
8326
+ tmp = false;
8327
+ }
8328
+ if (tmp) {
8329
+ var inductionVariable = indices.p_1;
8330
+ var last_0 = indices.q_1;
8331
+ var step = indices.r_1;
8332
+ if (step > 0 && inductionVariable <= last_0 || (step < 0 && last_0 <= inductionVariable))
8333
+ do {
8334
+ var index = inductionVariable;
8335
+ inductionVariable = inductionVariable + step | 0;
8336
+ if (regionMatches(other, 0, _this__u8e3s4, index, other.length, ignoreCase))
8337
+ return index;
8338
+ }
8339
+ while (!(index === last_0));
8340
+ } else {
8341
+ var inductionVariable_0 = indices.p_1;
8342
+ var last_1 = indices.q_1;
8343
+ var step_0 = indices.r_1;
8344
+ if (step_0 > 0 && inductionVariable_0 <= last_1 || (step_0 < 0 && last_1 <= inductionVariable_0))
8345
+ do {
8346
+ var index_0 = inductionVariable_0;
8347
+ inductionVariable_0 = inductionVariable_0 + step_0 | 0;
8348
+ if (regionMatchesImpl(other, 0, _this__u8e3s4, index_0, charSequenceLength(other), ignoreCase))
8349
+ return index_0;
8350
+ }
8351
+ while (!(index_0 === last_1));
8352
+ }
8353
+ return -1;
8354
+ }
8355
+ function get_lastIndex_3(_this__u8e3s4) {
8356
+ return charSequenceLength(_this__u8e3s4) - 1 | 0;
8357
+ }
8298
8358
  function regionMatchesImpl(_this__u8e3s4, thisOffset, other, otherOffset, length, ignoreCase) {
8299
8359
  if (otherOffset < 0 || thisOffset < 0 || thisOffset > (charSequenceLength(_this__u8e3s4) - length | 0) || otherOffset > (charSequenceLength(other) - length | 0)) {
8300
8360
  return false;
@@ -8316,7 +8376,7 @@ if (typeof String.prototype.endsWith === 'undefined') {
8316
8376
  }
8317
8377
  return _this__u8e3s4;
8318
8378
  }
8319
- function substringBefore(_this__u8e3s4, delimiter, missingDelimiterValue) {
8379
+ function substringBefore_0(_this__u8e3s4, delimiter, missingDelimiterValue) {
8320
8380
  missingDelimiterValue = missingDelimiterValue === VOID ? _this__u8e3s4 : missingDelimiterValue;
8321
8381
  var index = indexOf_0(_this__u8e3s4, delimiter);
8322
8382
  return index === -1 ? missingDelimiterValue : substring(_this__u8e3s4, 0, index);
@@ -8365,25 +8425,6 @@ if (typeof String.prototype.endsWith === 'undefined') {
8365
8425
  }
8366
8426
  return tmp;
8367
8427
  }
8368
- function indexOf_1(_this__u8e3s4, string, startIndex, ignoreCase) {
8369
- startIndex = startIndex === VOID ? 0 : startIndex;
8370
- ignoreCase = ignoreCase === VOID ? false : ignoreCase;
8371
- var tmp;
8372
- var tmp_0;
8373
- if (ignoreCase) {
8374
- tmp_0 = true;
8375
- } else {
8376
- tmp_0 = !(typeof _this__u8e3s4 === 'string');
8377
- }
8378
- if (tmp_0) {
8379
- tmp = indexOf_2(_this__u8e3s4, string, startIndex, charSequenceLength(_this__u8e3s4), ignoreCase);
8380
- } else {
8381
- // Inline function 'kotlin.text.nativeIndexOf' call
8382
- // Inline function 'kotlin.js.asDynamic' call
8383
- tmp = _this__u8e3s4.indexOf(string, startIndex);
8384
- }
8385
- return tmp;
8386
- }
8387
8428
  function endsWith_0(_this__u8e3s4, suffix, ignoreCase) {
8388
8429
  ignoreCase = ignoreCase === VOID ? false : ignoreCase;
8389
8430
  var tmp;
@@ -8404,42 +8445,6 @@ if (typeof String.prototype.endsWith === 'undefined') {
8404
8445
  return regionMatchesImpl(_this__u8e3s4, charSequenceLength(_this__u8e3s4) - charSequenceLength(suffix) | 0, suffix, 0, charSequenceLength(suffix), ignoreCase);
8405
8446
  }
8406
8447
  }
8407
- function indexOf_2(_this__u8e3s4, other, startIndex, endIndex, ignoreCase, last) {
8408
- last = last === VOID ? false : last;
8409
- var indices = !last ? numberRangeToNumber(coerceAtLeast(startIndex, 0), coerceAtMost(endIndex, charSequenceLength(_this__u8e3s4))) : downTo(coerceAtMost(startIndex, get_lastIndex_3(_this__u8e3s4)), coerceAtLeast(endIndex, 0));
8410
- var tmp;
8411
- if (typeof _this__u8e3s4 === 'string') {
8412
- tmp = typeof other === 'string';
8413
- } else {
8414
- tmp = false;
8415
- }
8416
- if (tmp) {
8417
- var inductionVariable = indices.p_1;
8418
- var last_0 = indices.q_1;
8419
- var step = indices.r_1;
8420
- if (step > 0 && inductionVariable <= last_0 || (step < 0 && last_0 <= inductionVariable))
8421
- do {
8422
- var index = inductionVariable;
8423
- inductionVariable = inductionVariable + step | 0;
8424
- if (regionMatches(other, 0, _this__u8e3s4, index, other.length, ignoreCase))
8425
- return index;
8426
- }
8427
- while (!(index === last_0));
8428
- } else {
8429
- var inductionVariable_0 = indices.p_1;
8430
- var last_1 = indices.q_1;
8431
- var step_0 = indices.r_1;
8432
- if (step_0 > 0 && inductionVariable_0 <= last_1 || (step_0 < 0 && last_1 <= inductionVariable_0))
8433
- do {
8434
- var index_0 = inductionVariable_0;
8435
- inductionVariable_0 = inductionVariable_0 + step_0 | 0;
8436
- if (regionMatchesImpl(other, 0, _this__u8e3s4, index_0, charSequenceLength(other), ignoreCase))
8437
- return index_0;
8438
- }
8439
- while (!(index_0 === last_1));
8440
- }
8441
- return -1;
8442
- }
8443
8448
  function lines(_this__u8e3s4) {
8444
8449
  return toList_1(lineSequence(_this__u8e3s4));
8445
8450
  }
@@ -11348,120 +11353,119 @@ if (typeof String.prototype.endsWith === 'undefined') {
11348
11353
  _.$_$.g6 = arrayIterator;
11349
11354
  _.$_$.h6 = booleanArray;
11350
11355
  _.$_$.i6 = captureStack;
11351
- _.$_$.j6 = charArrayOf;
11352
- _.$_$.k6 = charArray;
11353
- _.$_$.l6 = charCodeAt;
11354
- _.$_$.m6 = charSequenceGet;
11355
- _.$_$.n6 = charSequenceLength;
11356
- _.$_$.o6 = charSequenceSubSequence;
11357
- _.$_$.p6 = defineProp;
11358
- _.$_$.q6 = equals;
11359
- _.$_$.r6 = getBooleanHashCode;
11360
- _.$_$.s6 = getNumberHashCode;
11361
- _.$_$.t6 = getPropertyCallableRef;
11362
- _.$_$.u6 = getStringHashCode;
11363
- _.$_$.v6 = hashCode_0;
11364
- _.$_$.w6 = initMetadataForClass;
11365
- _.$_$.x6 = initMetadataForCompanion;
11366
- _.$_$.y6 = initMetadataForCoroutine;
11367
- _.$_$.z6 = initMetadataForInterface;
11368
- _.$_$.a7 = initMetadataForLambda;
11369
- _.$_$.b7 = initMetadataForObject;
11370
- _.$_$.c7 = isArray;
11371
- _.$_$.d7 = isBooleanArray;
11372
- _.$_$.e7 = isByteArray;
11373
- _.$_$.f7 = isCharArray;
11374
- _.$_$.g7 = isDoubleArray;
11375
- _.$_$.h7 = isFloatArray;
11376
- _.$_$.i7 = isIntArray;
11377
- _.$_$.j7 = isInterface;
11378
- _.$_$.k7 = isLongArray;
11379
- _.$_$.l7 = isShortArray;
11380
- _.$_$.m7 = get_js;
11381
- _.$_$.n7 = longArray;
11382
- _.$_$.o7 = numberRangeToNumber;
11383
- _.$_$.p7 = numberToChar;
11384
- _.$_$.q7 = numberToInt;
11385
- _.$_$.r7 = objectCreate;
11386
- _.$_$.s7 = protoOf;
11387
- _.$_$.t7 = toByte;
11388
- _.$_$.u7 = toString_1;
11389
- _.$_$.v7 = round;
11390
- _.$_$.w7 = ClosedRange;
11391
- _.$_$.x7 = coerceAtLeast;
11392
- _.$_$.y7 = coerceAtMost;
11393
- _.$_$.z7 = contains_0;
11394
- _.$_$.a8 = step;
11395
- _.$_$.b8 = until;
11396
- _.$_$.c8 = createKType;
11397
- _.$_$.d8 = getKClassFromExpression;
11398
- _.$_$.e8 = getKClass;
11399
- _.$_$.f8 = KClass;
11400
- _.$_$.g8 = KProperty1;
11401
- _.$_$.h8 = KTypeParameter;
11402
- _.$_$.i8 = contains_2;
11403
- _.$_$.j8 = equals_0;
11404
- _.$_$.k8 = indexOfAny;
11405
- _.$_$.l8 = indexOf_1;
11406
- _.$_$.m8 = indexOf_0;
11407
- _.$_$.n8 = isBlank;
11408
- _.$_$.o8 = lastIndexOf_0;
11409
- _.$_$.p8 = removeSuffix;
11410
- _.$_$.q8 = replace;
11411
- _.$_$.r8 = single_0;
11412
- _.$_$.s8 = startsWith;
11413
- _.$_$.t8 = substringAfter;
11414
- _.$_$.u8 = substringBefore;
11415
- _.$_$.v8 = substring_0;
11416
- _.$_$.w8 = substring;
11417
- _.$_$.x8 = toBooleanStrictOrNull;
11418
- _.$_$.y8 = toDoubleOrNull;
11419
- _.$_$.z8 = toDouble;
11420
- _.$_$.a9 = toIntOrNull;
11421
- _.$_$.b9 = toInt;
11422
- _.$_$.c9 = toLongOrNull;
11423
- _.$_$.d9 = toUByte;
11424
- _.$_$.e9 = toUInt;
11425
- _.$_$.f9 = toULongOrNull;
11426
- _.$_$.g9 = toULong;
11427
- _.$_$.h9 = toUShort;
11428
- _.$_$.i9 = trimIndent;
11429
- _.$_$.j9 = Duration;
11430
- _.$_$.k9 = Instant;
11431
- _.$_$.l9 = Uuid;
11432
- _.$_$.m9 = Char;
11433
- _.$_$.n9 = DeepRecursiveFunction;
11434
- _.$_$.o9 = DeepRecursiveScope;
11435
- _.$_$.p9 = Enum;
11436
- _.$_$.q9 = Exception;
11437
- _.$_$.r9 = IllegalArgumentException;
11438
- _.$_$.s9 = Long;
11439
- _.$_$.t9 = Pair;
11440
- _.$_$.u9 = Result;
11441
- _.$_$.v9 = THROW_CCE;
11442
- _.$_$.w9 = Triple;
11443
- _.$_$.x9 = UByteArray;
11444
- _.$_$.y9 = UByte;
11445
- _.$_$.z9 = UIntArray;
11446
- _.$_$.aa = UInt;
11447
- _.$_$.ba = ULongArray;
11448
- _.$_$.ca = ULong;
11449
- _.$_$.da = UShortArray;
11450
- _.$_$.ea = UShort;
11451
- _.$_$.fa = Unit;
11452
- _.$_$.ga = arrayOf;
11453
- _.$_$.ha = countTrailingZeroBits;
11454
- _.$_$.ia = createFailure;
11455
- _.$_$.ja = ensureNotNull;
11456
- _.$_$.ka = invoke;
11457
- _.$_$.la = isFinite_0;
11458
- _.$_$.ma = isFinite;
11459
- _.$_$.na = lazy;
11460
- _.$_$.oa = lazy_0;
11461
- _.$_$.pa = noWhenBranchMatchedException;
11462
- _.$_$.qa = plus_0;
11463
- _.$_$.ra = toString_0;
11464
- _.$_$.sa = to;
11356
+ _.$_$.j6 = charArray;
11357
+ _.$_$.k6 = charCodeAt;
11358
+ _.$_$.l6 = charSequenceGet;
11359
+ _.$_$.m6 = charSequenceLength;
11360
+ _.$_$.n6 = charSequenceSubSequence;
11361
+ _.$_$.o6 = defineProp;
11362
+ _.$_$.p6 = equals;
11363
+ _.$_$.q6 = getBooleanHashCode;
11364
+ _.$_$.r6 = getNumberHashCode;
11365
+ _.$_$.s6 = getPropertyCallableRef;
11366
+ _.$_$.t6 = getStringHashCode;
11367
+ _.$_$.u6 = hashCode_0;
11368
+ _.$_$.v6 = initMetadataForClass;
11369
+ _.$_$.w6 = initMetadataForCompanion;
11370
+ _.$_$.x6 = initMetadataForCoroutine;
11371
+ _.$_$.y6 = initMetadataForInterface;
11372
+ _.$_$.z6 = initMetadataForLambda;
11373
+ _.$_$.a7 = initMetadataForObject;
11374
+ _.$_$.b7 = isArray;
11375
+ _.$_$.c7 = isBooleanArray;
11376
+ _.$_$.d7 = isByteArray;
11377
+ _.$_$.e7 = isCharArray;
11378
+ _.$_$.f7 = isDoubleArray;
11379
+ _.$_$.g7 = isFloatArray;
11380
+ _.$_$.h7 = isIntArray;
11381
+ _.$_$.i7 = isInterface;
11382
+ _.$_$.j7 = isLongArray;
11383
+ _.$_$.k7 = isShortArray;
11384
+ _.$_$.l7 = get_js;
11385
+ _.$_$.m7 = longArray;
11386
+ _.$_$.n7 = numberRangeToNumber;
11387
+ _.$_$.o7 = numberToChar;
11388
+ _.$_$.p7 = numberToInt;
11389
+ _.$_$.q7 = objectCreate;
11390
+ _.$_$.r7 = protoOf;
11391
+ _.$_$.s7 = toByte;
11392
+ _.$_$.t7 = toString_1;
11393
+ _.$_$.u7 = round;
11394
+ _.$_$.v7 = ClosedRange;
11395
+ _.$_$.w7 = coerceAtLeast;
11396
+ _.$_$.x7 = coerceAtMost;
11397
+ _.$_$.y7 = contains_0;
11398
+ _.$_$.z7 = step;
11399
+ _.$_$.a8 = until;
11400
+ _.$_$.b8 = createKType;
11401
+ _.$_$.c8 = getKClassFromExpression;
11402
+ _.$_$.d8 = getKClass;
11403
+ _.$_$.e8 = KClass;
11404
+ _.$_$.f8 = KProperty1;
11405
+ _.$_$.g8 = KTypeParameter;
11406
+ _.$_$.h8 = contains_2;
11407
+ _.$_$.i8 = equals_0;
11408
+ _.$_$.j8 = indexOf_1;
11409
+ _.$_$.k8 = indexOf_0;
11410
+ _.$_$.l8 = isBlank;
11411
+ _.$_$.m8 = lastIndexOf_0;
11412
+ _.$_$.n8 = removeSuffix;
11413
+ _.$_$.o8 = replace;
11414
+ _.$_$.p8 = single_0;
11415
+ _.$_$.q8 = startsWith;
11416
+ _.$_$.r8 = substringAfter;
11417
+ _.$_$.s8 = substringBefore;
11418
+ _.$_$.t8 = substringBefore_0;
11419
+ _.$_$.u8 = substring_0;
11420
+ _.$_$.v8 = substring;
11421
+ _.$_$.w8 = toBooleanStrictOrNull;
11422
+ _.$_$.x8 = toDoubleOrNull;
11423
+ _.$_$.y8 = toDouble;
11424
+ _.$_$.z8 = toIntOrNull;
11425
+ _.$_$.a9 = toInt;
11426
+ _.$_$.b9 = toLongOrNull;
11427
+ _.$_$.c9 = toUByte;
11428
+ _.$_$.d9 = toUInt;
11429
+ _.$_$.e9 = toULongOrNull;
11430
+ _.$_$.f9 = toULong;
11431
+ _.$_$.g9 = toUShort;
11432
+ _.$_$.h9 = trimIndent;
11433
+ _.$_$.i9 = Duration;
11434
+ _.$_$.j9 = Instant;
11435
+ _.$_$.k9 = Uuid;
11436
+ _.$_$.l9 = Char;
11437
+ _.$_$.m9 = DeepRecursiveFunction;
11438
+ _.$_$.n9 = DeepRecursiveScope;
11439
+ _.$_$.o9 = Enum;
11440
+ _.$_$.p9 = Exception;
11441
+ _.$_$.q9 = IllegalArgumentException;
11442
+ _.$_$.r9 = Long;
11443
+ _.$_$.s9 = Pair;
11444
+ _.$_$.t9 = Result;
11445
+ _.$_$.u9 = THROW_CCE;
11446
+ _.$_$.v9 = Triple;
11447
+ _.$_$.w9 = UByteArray;
11448
+ _.$_$.x9 = UByte;
11449
+ _.$_$.y9 = UIntArray;
11450
+ _.$_$.z9 = UInt;
11451
+ _.$_$.aa = ULongArray;
11452
+ _.$_$.ba = ULong;
11453
+ _.$_$.ca = UShortArray;
11454
+ _.$_$.da = UShort;
11455
+ _.$_$.ea = Unit;
11456
+ _.$_$.fa = arrayOf;
11457
+ _.$_$.ga = countTrailingZeroBits;
11458
+ _.$_$.ha = createFailure;
11459
+ _.$_$.ia = ensureNotNull;
11460
+ _.$_$.ja = invoke;
11461
+ _.$_$.ka = isFinite_0;
11462
+ _.$_$.la = isFinite;
11463
+ _.$_$.ma = lazy;
11464
+ _.$_$.na = lazy_0;
11465
+ _.$_$.oa = noWhenBranchMatchedException;
11466
+ _.$_$.pa = plus_0;
11467
+ _.$_$.qa = toString_0;
11468
+ _.$_$.ra = to;
11465
11469
  //endregion
11466
11470
  return _;
11467
11471
  }(module.exports));