@flock/wirespec 0.9.29 → 0.10.0

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.
@@ -46,17 +46,6 @@ if (typeof Array.prototype.fill === 'undefined') {
46
46
  Object.defineProperty(TypedArray.prototype, 'fill', {value: Array.prototype.fill});
47
47
  }
48
48
  });
49
- if (typeof Math.clz32 === 'undefined') {
50
- Math.clz32 = function (log, LN2) {
51
- return function (x) {
52
- var asUint = x >>> 0;
53
- if (asUint === 0) {
54
- return 32;
55
- }
56
- return 31 - (log(asUint) / LN2 | 0) | 0; // the "| 0" acts like math.floor
57
- };
58
- }(Math.log, Math.LN2);
59
- }
60
49
  if (typeof Math.log2 === 'undefined') {
61
50
  Math.log2 = function (x) {
62
51
  return Math.log(x) * Math.LOG2E;
@@ -67,11 +56,16 @@ if (typeof Math.log10 === 'undefined') {
67
56
  return Math.log(x) * Math.LOG10E;
68
57
  };
69
58
  }
70
- if (typeof String.prototype.startsWith === 'undefined') {
71
- Object.defineProperty(String.prototype, 'startsWith', {value: function (searchString, position) {
72
- position = position || 0;
73
- return this.lastIndexOf(searchString, position) === position;
74
- }});
59
+ if (typeof Math.clz32 === 'undefined') {
60
+ Math.clz32 = function (log, LN2) {
61
+ return function (x) {
62
+ var asUint = x >>> 0;
63
+ if (asUint === 0) {
64
+ return 32;
65
+ }
66
+ return 31 - (log(asUint) / LN2 | 0) | 0; // the "| 0" acts like math.floor
67
+ };
68
+ }(Math.log, Math.LN2);
75
69
  }
76
70
  if (typeof String.prototype.endsWith === 'undefined') {
77
71
  Object.defineProperty(String.prototype, 'endsWith', {value: function (searchString, position) {
@@ -84,6 +78,12 @@ if (typeof String.prototype.endsWith === 'undefined') {
84
78
  return lastIndex !== -1 && lastIndex === position;
85
79
  }});
86
80
  }
81
+ if (typeof String.prototype.startsWith === 'undefined') {
82
+ Object.defineProperty(String.prototype, 'startsWith', {value: function (searchString, position) {
83
+ position = position || 0;
84
+ return this.lastIndexOf(searchString, position) === position;
85
+ }});
86
+ }
87
87
  //endregion
88
88
  (function (root, factory) {
89
89
  if (typeof define === 'function' && define.amd)
@@ -581,6 +581,21 @@ if (typeof String.prototype.endsWith === 'undefined') {
581
581
  buffer.f(postfix);
582
582
  return buffer;
583
583
  }
584
+ function filterNotNull(_this__u8e3s4) {
585
+ return filterNotNullTo(_this__u8e3s4, ArrayList_init_$Create$());
586
+ }
587
+ function filterNotNullTo(_this__u8e3s4, destination) {
588
+ var inductionVariable = 0;
589
+ var last = _this__u8e3s4.length;
590
+ while (inductionVariable < last) {
591
+ var element = _this__u8e3s4[inductionVariable];
592
+ inductionVariable = inductionVariable + 1 | 0;
593
+ if (!(element == null)) {
594
+ destination.e(element);
595
+ }
596
+ }
597
+ return destination;
598
+ }
584
599
  function getOrNull(_this__u8e3s4, index) {
585
600
  return (0 <= index ? index <= (_this__u8e3s4.length - 1 | 0) : false) ? _this__u8e3s4[index] : null;
586
601
  }
@@ -751,8 +766,8 @@ if (typeof String.prototype.endsWith === 'undefined') {
751
766
  }
752
767
  return optimizeReadOnlySet(toCollection_0(_this__u8e3s4, LinkedHashSet_init_$Create$()));
753
768
  }
754
- function filterNotNull(_this__u8e3s4) {
755
- return filterNotNullTo(_this__u8e3s4, ArrayList_init_$Create$());
769
+ function filterNotNull_0(_this__u8e3s4) {
770
+ return filterNotNullTo_0(_this__u8e3s4, ArrayList_init_$Create$());
756
771
  }
757
772
  function drop(_this__u8e3s4, n) {
758
773
  // Inline function 'kotlin.require' call
@@ -930,7 +945,7 @@ if (typeof String.prototype.endsWith === 'undefined') {
930
945
  sortWith_0(this_1, comparator);
931
946
  return this_1;
932
947
  }
933
- function filterNotNullTo(_this__u8e3s4, destination) {
948
+ function filterNotNullTo_0(_this__u8e3s4, destination) {
934
949
  var tmp0_iterator = _this__u8e3s4.g();
935
950
  while (tmp0_iterator.h()) {
936
951
  var element = tmp0_iterator.i();
@@ -8195,6 +8210,9 @@ if (typeof String.prototype.endsWith === 'undefined') {
8195
8210
  function throwIndexOverflow() {
8196
8211
  throw ArithmeticException_init_$Create$_0('Index overflow has happened.');
8197
8212
  }
8213
+ function listOfNotNull(elements) {
8214
+ return filterNotNull(elements);
8215
+ }
8198
8216
  function binarySearch(_this__u8e3s4, element, fromIndex, toIndex) {
8199
8217
  fromIndex = fromIndex === VOID ? 0 : fromIndex;
8200
8218
  toIndex = toIndex === VOID ? _this__u8e3s4.j() : toIndex;
@@ -12850,7 +12868,7 @@ if (typeof String.prototype.endsWith === 'undefined') {
12850
12868
  _.$_$.b6 = emptyMap;
12851
12869
  _.$_$.c6 = emptySet;
12852
12870
  _.$_$.d6 = fill_0;
12853
- _.$_$.e6 = filterNotNull;
12871
+ _.$_$.e6 = filterNotNull_0;
12854
12872
  _.$_$.f6 = firstOrNull;
12855
12873
  _.$_$.g6 = first_0;
12856
12874
  _.$_$.h6 = first;
@@ -12876,241 +12894,242 @@ if (typeof String.prototype.endsWith === 'undefined') {
12876
12894
  _.$_$.b7 = lastOrNull_0;
12877
12895
  _.$_$.c7 = last_0;
12878
12896
  _.$_$.d7 = last;
12879
- _.$_$.e7 = listOf;
12880
- _.$_$.f7 = listOf_0;
12881
- _.$_$.g7 = mapCapacity;
12882
- _.$_$.h7 = mapOf_0;
12883
- _.$_$.i7 = minus;
12884
- _.$_$.j7 = mutableListOf;
12885
- _.$_$.k7 = mutableMapOf;
12886
- _.$_$.l7 = plus_5;
12887
- _.$_$.m7 = plus_1;
12888
- _.$_$.n7 = plus_2;
12889
- _.$_$.o7 = plus_4;
12890
- _.$_$.p7 = plus_0;
12891
- _.$_$.q7 = plus;
12892
- _.$_$.r7 = removeLast;
12893
- _.$_$.s7 = setOf;
12894
- _.$_$.t7 = setOf_0;
12895
- _.$_$.u7 = singleOrNull;
12896
- _.$_$.v7 = single_0;
12897
- _.$_$.w7 = slice;
12898
- _.$_$.x7 = sortWith_0;
12899
- _.$_$.y7 = sortedWith;
12900
- _.$_$.z7 = sorted;
12901
- _.$_$.a8 = sort_0;
12902
- _.$_$.b8 = sum;
12903
- _.$_$.c8 = takeLast;
12904
- _.$_$.d8 = take;
12905
- _.$_$.e8 = toBooleanArray;
12906
- _.$_$.f8 = toCharArray;
12907
- _.$_$.g8 = toHashSet;
12908
- _.$_$.h8 = toList_1;
12909
- _.$_$.i8 = toList_0;
12910
- _.$_$.j8 = toList;
12911
- _.$_$.k8 = toMap;
12912
- _.$_$.l8 = toMutableList_0;
12913
- _.$_$.m8 = toMutableMap;
12914
- _.$_$.n8 = toSet_0;
12915
- _.$_$.o8 = toSet;
12916
- _.$_$.p8 = withDefault;
12917
- _.$_$.q8 = withIndex;
12918
- _.$_$.r8 = withIndex_0;
12919
- _.$_$.s8 = zipWithNext;
12920
- _.$_$.t8 = zip;
12921
- _.$_$.u8 = compareValues;
12922
- _.$_$.v8 = CancellationException;
12923
- _.$_$.w8 = get_COROUTINE_SUSPENDED;
12924
- _.$_$.x8 = CoroutineImpl;
12925
- _.$_$.y8 = enumEntries;
12926
- _.$_$.z8 = println;
12927
- _.$_$.a9 = println_0;
12928
- _.$_$.b9 = print;
12929
- _.$_$.c9 = readlnOrNull;
12930
- _.$_$.d9 = arrayIterator;
12931
- _.$_$.e9 = booleanArray;
12932
- _.$_$.f9 = captureStack;
12933
- _.$_$.g9 = charArrayOf;
12934
- _.$_$.h9 = charArray;
12935
- _.$_$.i9 = charSequenceGet;
12936
- _.$_$.j9 = charSequenceLength;
12937
- _.$_$.k9 = charSequenceSubSequence;
12938
- _.$_$.l9 = compareTo;
12939
- _.$_$.m9 = defineProp;
12940
- _.$_$.n9 = equals;
12941
- _.$_$.o9 = fillArrayVal;
12942
- _.$_$.p9 = getBooleanHashCode;
12943
- _.$_$.q9 = getNumberHashCode;
12944
- _.$_$.r9 = getPropertyCallableRef;
12945
- _.$_$.s9 = getStringHashCode;
12946
- _.$_$.t9 = hashCode;
12947
- _.$_$.u9 = initMetadataForClass;
12948
- _.$_$.v9 = initMetadataForCompanion;
12949
- _.$_$.w9 = initMetadataForCoroutine;
12950
- _.$_$.x9 = initMetadataForInterface;
12951
- _.$_$.y9 = initMetadataForLambda;
12952
- _.$_$.z9 = initMetadataForObject;
12953
- _.$_$.aa = isArray;
12954
- _.$_$.ba = isBooleanArray;
12955
- _.$_$.ca = isByteArray;
12956
- _.$_$.da = isCharArray;
12957
- _.$_$.ea = isCharSequence;
12958
- _.$_$.fa = isDoubleArray;
12959
- _.$_$.ga = isFloatArray;
12960
- _.$_$.ha = isIntArray;
12961
- _.$_$.ia = isInterface;
12962
- _.$_$.ja = isLongArray;
12963
- _.$_$.ka = isShortArray;
12964
- _.$_$.la = iterator;
12965
- _.$_$.ma = get_js;
12966
- _.$_$.na = longArray;
12967
- _.$_$.oa = numberRangeToNumber;
12968
- _.$_$.pa = numberToChar;
12969
- _.$_$.qa = numberToDouble;
12970
- _.$_$.ra = numberToInt;
12971
- _.$_$.sa = numberToLong;
12972
- _.$_$.ta = objectCreate;
12973
- _.$_$.ua = protoOf;
12974
- _.$_$.va = toByte;
12975
- _.$_$.wa = toLong;
12976
- _.$_$.xa = toShort;
12977
- _.$_$.ya = toString_1;
12978
- _.$_$.za = roundToInt;
12979
- _.$_$.ab = withSign;
12980
- _.$_$.bb = Random_0;
12981
- _.$_$.cb = ClosedRange;
12982
- _.$_$.db = IntRange;
12983
- _.$_$.eb = coerceAtLeast_1;
12984
- _.$_$.fb = coerceAtLeast;
12985
- _.$_$.gb = coerceAtLeast_0;
12986
- _.$_$.hb = coerceAtMost;
12987
- _.$_$.ib = coerceIn;
12988
- _.$_$.jb = coerceIn_0;
12989
- _.$_$.kb = contains_6;
12990
- _.$_$.lb = step;
12991
- _.$_$.mb = until;
12992
- _.$_$.nb = KClass;
12993
- _.$_$.ob = KMutableProperty1;
12994
- _.$_$.pb = KProperty1;
12995
- _.$_$.qb = KTypeParameter;
12996
- _.$_$.rb = asSequence_2;
12997
- _.$_$.sb = filter;
12998
- _.$_$.tb = generateSequence_0;
12999
- _.$_$.ub = generateSequence;
13000
- _.$_$.vb = joinToString_1;
13001
- _.$_$.wb = map;
13002
- _.$_$.xb = toList_2;
13003
- _.$_$.yb = toSet_1;
13004
- _.$_$.zb = StringBuilder;
13005
- _.$_$.ac = asSequence_1;
13006
- _.$_$.bc = chunked;
13007
- _.$_$.cc = commonPrefixWith;
13008
- _.$_$.dc = concatToString;
13009
- _.$_$.ec = concatToString_0;
13010
- _.$_$.fc = contains_7;
13011
- _.$_$.gc = contains_8;
13012
- _.$_$.hc = dropLast_0;
13013
- _.$_$.ic = drop_0;
13014
- _.$_$.jc = endsWith_1;
13015
- _.$_$.kc = endsWith;
13016
- _.$_$.lc = equals_0;
13017
- _.$_$.mc = firstOrNull_0;
13018
- _.$_$.nc = first_1;
13019
- _.$_$.oc = indexOf_6;
13020
- _.$_$.pc = indexOf_5;
13021
- _.$_$.qc = isBlank;
13022
- _.$_$.rc = isDigit;
13023
- _.$_$.sc = isHighSurrogate;
13024
- _.$_$.tc = isLetterOrDigit;
13025
- _.$_$.uc = isLowSurrogate;
13026
- _.$_$.vc = isLowerCase;
13027
- _.$_$.wc = isUpperCase;
13028
- _.$_$.xc = isWhitespace;
13029
- _.$_$.yc = get_lastIndex_4;
13030
- _.$_$.zc = lastIndexOf;
13031
- _.$_$.ad = matches;
13032
- _.$_$.bd = prependIndent;
13033
- _.$_$.cd = removePrefix;
13034
- _.$_$.dd = removeSuffix;
13035
- _.$_$.ed = removeSurrounding;
13036
- _.$_$.fd = repeat;
13037
- _.$_$.gd = replace;
13038
- _.$_$.hd = replace_0;
13039
- _.$_$.id = single_2;
13040
- _.$_$.jd = slice_0;
13041
- _.$_$.kd = split_0;
13042
- _.$_$.ld = split;
13043
- _.$_$.md = startsWith;
13044
- _.$_$.nd = startsWith_1;
13045
- _.$_$.od = substringAfter;
13046
- _.$_$.pd = substringBefore;
13047
- _.$_$.qd = substringBefore_0;
13048
- _.$_$.rd = substring_0;
13049
- _.$_$.sd = take_1;
13050
- _.$_$.td = titlecase;
13051
- _.$_$.ud = toBooleanStrictOrNull;
13052
- _.$_$.vd = toCharArray_0;
13053
- _.$_$.wd = toDoubleOrNull;
13054
- _.$_$.xd = toDouble;
13055
- _.$_$.yd = toIntOrNull;
13056
- _.$_$.zd = toInt_0;
13057
- _.$_$.ae = toInt;
13058
- _.$_$.be = toList_3;
13059
- _.$_$.ce = toLongOrNull;
13060
- _.$_$.de = toUByte;
13061
- _.$_$.ee = toUInt;
13062
- _.$_$.fe = toULongOrNull;
13063
- _.$_$.ge = toULong;
13064
- _.$_$.he = toUShort;
13065
- _.$_$.ie = trimIndent;
13066
- _.$_$.je = trimMargin;
13067
- _.$_$.ke = trimStart_0;
13068
- _.$_$.le = trimStart;
13069
- _.$_$.me = trim;
13070
- _.$_$.ne = uppercaseChar;
13071
- _.$_$.oe = Duration;
13072
- _.$_$.pe = Char;
13073
- _.$_$.qe = ClassCastException;
13074
- _.$_$.re = Comparable;
13075
- _.$_$.se = Comparator;
13076
- _.$_$.te = DeepRecursiveFunction;
13077
- _.$_$.ue = DeepRecursiveScope;
13078
- _.$_$.ve = Enum;
13079
- _.$_$.we = Exception;
13080
- _.$_$.xe = IllegalArgumentException;
13081
- _.$_$.ye = IllegalStateException;
13082
- _.$_$.ze = Long;
13083
- _.$_$.af = NotImplementedError;
13084
- _.$_$.bf = NumberFormatException;
13085
- _.$_$.cf = Pair;
13086
- _.$_$.df = Result;
13087
- _.$_$.ef = RuntimeException;
13088
- _.$_$.ff = THROW_CCE;
13089
- _.$_$.gf = THROW_IAE;
13090
- _.$_$.hf = Triple;
13091
- _.$_$.if = UByteArray;
13092
- _.$_$.jf = UByte;
13093
- _.$_$.kf = UIntArray;
13094
- _.$_$.lf = UInt;
13095
- _.$_$.mf = ULongArray;
13096
- _.$_$.nf = ULong;
13097
- _.$_$.of = UShortArray;
13098
- _.$_$.pf = UShort;
13099
- _.$_$.qf = Unit;
13100
- _.$_$.rf = addSuppressed;
13101
- _.$_$.sf = arrayOf;
13102
- _.$_$.tf = countTrailingZeroBits;
13103
- _.$_$.uf = createFailure;
13104
- _.$_$.vf = ensureNotNull;
13105
- _.$_$.wf = invoke;
13106
- _.$_$.xf = isFinite_0;
13107
- _.$_$.yf = isFinite;
13108
- _.$_$.zf = lazy;
13109
- _.$_$.ag = lazy_0;
13110
- _.$_$.bg = noWhenBranchMatchedException;
13111
- _.$_$.cg = plus_3;
13112
- _.$_$.dg = toString_0;
13113
- _.$_$.eg = to;
12897
+ _.$_$.e7 = listOfNotNull;
12898
+ _.$_$.f7 = listOf;
12899
+ _.$_$.g7 = listOf_0;
12900
+ _.$_$.h7 = mapCapacity;
12901
+ _.$_$.i7 = mapOf_0;
12902
+ _.$_$.j7 = minus;
12903
+ _.$_$.k7 = mutableListOf;
12904
+ _.$_$.l7 = mutableMapOf;
12905
+ _.$_$.m7 = plus_5;
12906
+ _.$_$.n7 = plus_1;
12907
+ _.$_$.o7 = plus_2;
12908
+ _.$_$.p7 = plus_4;
12909
+ _.$_$.q7 = plus_0;
12910
+ _.$_$.r7 = plus;
12911
+ _.$_$.s7 = removeLast;
12912
+ _.$_$.t7 = setOf;
12913
+ _.$_$.u7 = setOf_0;
12914
+ _.$_$.v7 = singleOrNull;
12915
+ _.$_$.w7 = single_0;
12916
+ _.$_$.x7 = slice;
12917
+ _.$_$.y7 = sortWith_0;
12918
+ _.$_$.z7 = sortedWith;
12919
+ _.$_$.a8 = sorted;
12920
+ _.$_$.b8 = sort_0;
12921
+ _.$_$.c8 = sum;
12922
+ _.$_$.d8 = takeLast;
12923
+ _.$_$.e8 = take;
12924
+ _.$_$.f8 = toBooleanArray;
12925
+ _.$_$.g8 = toCharArray;
12926
+ _.$_$.h8 = toHashSet;
12927
+ _.$_$.i8 = toList_1;
12928
+ _.$_$.j8 = toList_0;
12929
+ _.$_$.k8 = toList;
12930
+ _.$_$.l8 = toMap;
12931
+ _.$_$.m8 = toMutableList_0;
12932
+ _.$_$.n8 = toMutableMap;
12933
+ _.$_$.o8 = toSet_0;
12934
+ _.$_$.p8 = toSet;
12935
+ _.$_$.q8 = withDefault;
12936
+ _.$_$.r8 = withIndex;
12937
+ _.$_$.s8 = withIndex_0;
12938
+ _.$_$.t8 = zipWithNext;
12939
+ _.$_$.u8 = zip;
12940
+ _.$_$.v8 = compareValues;
12941
+ _.$_$.w8 = CancellationException;
12942
+ _.$_$.x8 = get_COROUTINE_SUSPENDED;
12943
+ _.$_$.y8 = CoroutineImpl;
12944
+ _.$_$.z8 = enumEntries;
12945
+ _.$_$.a9 = println;
12946
+ _.$_$.b9 = println_0;
12947
+ _.$_$.c9 = print;
12948
+ _.$_$.d9 = readlnOrNull;
12949
+ _.$_$.e9 = arrayIterator;
12950
+ _.$_$.f9 = booleanArray;
12951
+ _.$_$.g9 = captureStack;
12952
+ _.$_$.h9 = charArrayOf;
12953
+ _.$_$.i9 = charArray;
12954
+ _.$_$.j9 = charSequenceGet;
12955
+ _.$_$.k9 = charSequenceLength;
12956
+ _.$_$.l9 = charSequenceSubSequence;
12957
+ _.$_$.m9 = compareTo;
12958
+ _.$_$.n9 = defineProp;
12959
+ _.$_$.o9 = equals;
12960
+ _.$_$.p9 = fillArrayVal;
12961
+ _.$_$.q9 = getBooleanHashCode;
12962
+ _.$_$.r9 = getNumberHashCode;
12963
+ _.$_$.s9 = getPropertyCallableRef;
12964
+ _.$_$.t9 = getStringHashCode;
12965
+ _.$_$.u9 = hashCode;
12966
+ _.$_$.v9 = initMetadataForClass;
12967
+ _.$_$.w9 = initMetadataForCompanion;
12968
+ _.$_$.x9 = initMetadataForCoroutine;
12969
+ _.$_$.y9 = initMetadataForInterface;
12970
+ _.$_$.z9 = initMetadataForLambda;
12971
+ _.$_$.aa = initMetadataForObject;
12972
+ _.$_$.ba = isArray;
12973
+ _.$_$.ca = isBooleanArray;
12974
+ _.$_$.da = isByteArray;
12975
+ _.$_$.ea = isCharArray;
12976
+ _.$_$.fa = isCharSequence;
12977
+ _.$_$.ga = isDoubleArray;
12978
+ _.$_$.ha = isFloatArray;
12979
+ _.$_$.ia = isIntArray;
12980
+ _.$_$.ja = isInterface;
12981
+ _.$_$.ka = isLongArray;
12982
+ _.$_$.la = isShortArray;
12983
+ _.$_$.ma = iterator;
12984
+ _.$_$.na = get_js;
12985
+ _.$_$.oa = longArray;
12986
+ _.$_$.pa = numberRangeToNumber;
12987
+ _.$_$.qa = numberToChar;
12988
+ _.$_$.ra = numberToDouble;
12989
+ _.$_$.sa = numberToInt;
12990
+ _.$_$.ta = numberToLong;
12991
+ _.$_$.ua = objectCreate;
12992
+ _.$_$.va = protoOf;
12993
+ _.$_$.wa = toByte;
12994
+ _.$_$.xa = toLong;
12995
+ _.$_$.ya = toShort;
12996
+ _.$_$.za = toString_1;
12997
+ _.$_$.ab = roundToInt;
12998
+ _.$_$.bb = withSign;
12999
+ _.$_$.cb = Random_0;
13000
+ _.$_$.db = ClosedRange;
13001
+ _.$_$.eb = IntRange;
13002
+ _.$_$.fb = coerceAtLeast_1;
13003
+ _.$_$.gb = coerceAtLeast;
13004
+ _.$_$.hb = coerceAtLeast_0;
13005
+ _.$_$.ib = coerceAtMost;
13006
+ _.$_$.jb = coerceIn;
13007
+ _.$_$.kb = coerceIn_0;
13008
+ _.$_$.lb = contains_6;
13009
+ _.$_$.mb = step;
13010
+ _.$_$.nb = until;
13011
+ _.$_$.ob = KClass;
13012
+ _.$_$.pb = KMutableProperty1;
13013
+ _.$_$.qb = KProperty1;
13014
+ _.$_$.rb = KTypeParameter;
13015
+ _.$_$.sb = asSequence_2;
13016
+ _.$_$.tb = filter;
13017
+ _.$_$.ub = generateSequence_0;
13018
+ _.$_$.vb = generateSequence;
13019
+ _.$_$.wb = joinToString_1;
13020
+ _.$_$.xb = map;
13021
+ _.$_$.yb = toList_2;
13022
+ _.$_$.zb = toSet_1;
13023
+ _.$_$.ac = StringBuilder;
13024
+ _.$_$.bc = asSequence_1;
13025
+ _.$_$.cc = chunked;
13026
+ _.$_$.dc = commonPrefixWith;
13027
+ _.$_$.ec = concatToString;
13028
+ _.$_$.fc = concatToString_0;
13029
+ _.$_$.gc = contains_7;
13030
+ _.$_$.hc = contains_8;
13031
+ _.$_$.ic = dropLast_0;
13032
+ _.$_$.jc = drop_0;
13033
+ _.$_$.kc = endsWith_1;
13034
+ _.$_$.lc = endsWith;
13035
+ _.$_$.mc = equals_0;
13036
+ _.$_$.nc = firstOrNull_0;
13037
+ _.$_$.oc = first_1;
13038
+ _.$_$.pc = indexOf_6;
13039
+ _.$_$.qc = indexOf_5;
13040
+ _.$_$.rc = isBlank;
13041
+ _.$_$.sc = isDigit;
13042
+ _.$_$.tc = isHighSurrogate;
13043
+ _.$_$.uc = isLetterOrDigit;
13044
+ _.$_$.vc = isLowSurrogate;
13045
+ _.$_$.wc = isLowerCase;
13046
+ _.$_$.xc = isUpperCase;
13047
+ _.$_$.yc = isWhitespace;
13048
+ _.$_$.zc = get_lastIndex_4;
13049
+ _.$_$.ad = lastIndexOf;
13050
+ _.$_$.bd = matches;
13051
+ _.$_$.cd = prependIndent;
13052
+ _.$_$.dd = removePrefix;
13053
+ _.$_$.ed = removeSuffix;
13054
+ _.$_$.fd = removeSurrounding;
13055
+ _.$_$.gd = repeat;
13056
+ _.$_$.hd = replace;
13057
+ _.$_$.id = replace_0;
13058
+ _.$_$.jd = single_2;
13059
+ _.$_$.kd = slice_0;
13060
+ _.$_$.ld = split_0;
13061
+ _.$_$.md = split;
13062
+ _.$_$.nd = startsWith;
13063
+ _.$_$.od = startsWith_1;
13064
+ _.$_$.pd = substringAfter;
13065
+ _.$_$.qd = substringBefore;
13066
+ _.$_$.rd = substringBefore_0;
13067
+ _.$_$.sd = substring_0;
13068
+ _.$_$.td = take_1;
13069
+ _.$_$.ud = titlecase;
13070
+ _.$_$.vd = toBooleanStrictOrNull;
13071
+ _.$_$.wd = toCharArray_0;
13072
+ _.$_$.xd = toDoubleOrNull;
13073
+ _.$_$.yd = toDouble;
13074
+ _.$_$.zd = toIntOrNull;
13075
+ _.$_$.ae = toInt_0;
13076
+ _.$_$.be = toInt;
13077
+ _.$_$.ce = toList_3;
13078
+ _.$_$.de = toLongOrNull;
13079
+ _.$_$.ee = toUByte;
13080
+ _.$_$.fe = toUInt;
13081
+ _.$_$.ge = toULongOrNull;
13082
+ _.$_$.he = toULong;
13083
+ _.$_$.ie = toUShort;
13084
+ _.$_$.je = trimIndent;
13085
+ _.$_$.ke = trimMargin;
13086
+ _.$_$.le = trimStart_0;
13087
+ _.$_$.me = trimStart;
13088
+ _.$_$.ne = trim;
13089
+ _.$_$.oe = uppercaseChar;
13090
+ _.$_$.pe = Duration;
13091
+ _.$_$.qe = Char;
13092
+ _.$_$.re = ClassCastException;
13093
+ _.$_$.se = Comparable;
13094
+ _.$_$.te = Comparator;
13095
+ _.$_$.ue = DeepRecursiveFunction;
13096
+ _.$_$.ve = DeepRecursiveScope;
13097
+ _.$_$.we = Enum;
13098
+ _.$_$.xe = Exception;
13099
+ _.$_$.ye = IllegalArgumentException;
13100
+ _.$_$.ze = IllegalStateException;
13101
+ _.$_$.af = Long;
13102
+ _.$_$.bf = NotImplementedError;
13103
+ _.$_$.cf = NumberFormatException;
13104
+ _.$_$.df = Pair;
13105
+ _.$_$.ef = Result;
13106
+ _.$_$.ff = RuntimeException;
13107
+ _.$_$.gf = THROW_CCE;
13108
+ _.$_$.hf = THROW_IAE;
13109
+ _.$_$.if = Triple;
13110
+ _.$_$.jf = UByteArray;
13111
+ _.$_$.kf = UByte;
13112
+ _.$_$.lf = UIntArray;
13113
+ _.$_$.mf = UInt;
13114
+ _.$_$.nf = ULongArray;
13115
+ _.$_$.of = ULong;
13116
+ _.$_$.pf = UShortArray;
13117
+ _.$_$.qf = UShort;
13118
+ _.$_$.rf = Unit;
13119
+ _.$_$.sf = addSuppressed;
13120
+ _.$_$.tf = arrayOf;
13121
+ _.$_$.uf = countTrailingZeroBits;
13122
+ _.$_$.vf = createFailure;
13123
+ _.$_$.wf = ensureNotNull;
13124
+ _.$_$.xf = invoke;
13125
+ _.$_$.yf = isFinite_0;
13126
+ _.$_$.zf = isFinite;
13127
+ _.$_$.ag = lazy;
13128
+ _.$_$.bg = lazy_0;
13129
+ _.$_$.cg = noWhenBranchMatchedException;
13130
+ _.$_$.dg = plus_3;
13131
+ _.$_$.eg = toString_0;
13132
+ _.$_$.fg = to;
13114
13133
  //endregion
13115
13134
  return _;
13116
13135
  }));