@flock/wirespec 0.9.29 → 0.10.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.
@@ -57,21 +57,15 @@ if (typeof Math.clz32 === 'undefined') {
57
57
  };
58
58
  }(Math.log, Math.LN2);
59
59
  }
60
- if (typeof Math.log2 === 'undefined') {
61
- Math.log2 = function (x) {
62
- return Math.log(x) * Math.LOG2E;
63
- };
64
- }
65
60
  if (typeof Math.log10 === 'undefined') {
66
61
  Math.log10 = function (x) {
67
62
  return Math.log(x) * Math.LOG10E;
68
63
  };
69
64
  }
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
- }});
65
+ if (typeof Math.log2 === 'undefined') {
66
+ Math.log2 = function (x) {
67
+ return Math.log(x) * Math.LOG2E;
68
+ };
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;
@@ -12807,310 +12825,312 @@ if (typeof String.prototype.endsWith === 'undefined') {
12807
12825
  _.$_$.k4 = Collection;
12808
12826
  _.$_$.l4 = HashMap;
12809
12827
  _.$_$.m4 = HashSet;
12810
- _.$_$.n4 = Iterable;
12811
- _.$_$.o4 = LinkedHashMap;
12812
- _.$_$.p4 = LinkedHashSet;
12813
- _.$_$.q4 = KtList;
12814
- _.$_$.r4 = Entry;
12815
- _.$_$.s4 = KtMap;
12816
- _.$_$.t4 = KtMutableList;
12817
- _.$_$.u4 = KtMutableMap;
12818
- _.$_$.v4 = KtMutableSet;
12819
- _.$_$.w4 = KtSet;
12820
- _.$_$.x4 = addAll;
12821
- _.$_$.y4 = arrayCopy;
12822
- _.$_$.z4 = asList;
12823
- _.$_$.a5 = asReversed_0;
12824
- _.$_$.b5 = asReversed;
12825
- _.$_$.c5 = asSequence_0;
12826
- _.$_$.d5 = binarySearch;
12827
- _.$_$.e5 = checkBuilderCapacity;
12828
- _.$_$.f5 = checkCountOverflow;
12829
- _.$_$.g5 = checkIndexOverflow;
12830
- _.$_$.h5 = collectionSizeOrDefault;
12831
- _.$_$.i5 = contains_0;
12832
- _.$_$.j5 = contentEquals;
12833
- _.$_$.k5 = contentEquals_0;
12834
- _.$_$.l5 = contentHashCode;
12835
- _.$_$.m5 = contentToString;
12836
- _.$_$.n5 = copyOf_4;
12837
- _.$_$.o5 = copyOf_2;
12838
- _.$_$.p5 = copyOf_6;
12839
- _.$_$.q5 = copyOf;
12840
- _.$_$.r5 = copyOf_5;
12841
- _.$_$.s5 = copyOf_0;
12842
- _.$_$.t5 = copyOf_1;
12843
- _.$_$.u5 = copyOf_7;
12844
- _.$_$.v5 = copyOf_3;
12845
- _.$_$.w5 = copyToArray;
12846
- _.$_$.x5 = distinct;
12847
- _.$_$.y5 = dropLast;
12848
- _.$_$.z5 = drop;
12849
- _.$_$.a6 = emptyList;
12850
- _.$_$.b6 = emptyMap;
12851
- _.$_$.c6 = emptySet;
12852
- _.$_$.d6 = fill_0;
12853
- _.$_$.e6 = filterNotNull;
12854
- _.$_$.f6 = firstOrNull;
12855
- _.$_$.g6 = first_0;
12856
- _.$_$.h6 = first;
12857
- _.$_$.i6 = flatten;
12858
- _.$_$.j6 = getOrNull;
12859
- _.$_$.k6 = getOrNull_0;
12860
- _.$_$.l6 = getValue;
12861
- _.$_$.m6 = hashMapOf;
12862
- _.$_$.n6 = indexOf;
12863
- _.$_$.o6 = get_indices_0;
12864
- _.$_$.p6 = get_indices;
12865
- _.$_$.q6 = get_indices_1;
12866
- _.$_$.r6 = joinToString_0;
12867
- _.$_$.s6 = joinToString;
12868
- _.$_$.t6 = joinTo_0;
12869
- _.$_$.u6 = get_lastIndex;
12870
- _.$_$.v6 = get_lastIndex_2;
12871
- _.$_$.w6 = get_lastIndex_3;
12872
- _.$_$.x6 = get_lastIndex_0;
12873
- _.$_$.y6 = lastOrNull_1;
12874
- _.$_$.z6 = lastOrNull_2;
12875
- _.$_$.a7 = lastOrNull;
12876
- _.$_$.b7 = lastOrNull_0;
12877
- _.$_$.c7 = last_0;
12878
- _.$_$.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;
12828
+ _.$_$.n4 = IndexedValue;
12829
+ _.$_$.o4 = Iterable;
12830
+ _.$_$.p4 = LinkedHashMap;
12831
+ _.$_$.q4 = LinkedHashSet;
12832
+ _.$_$.r4 = KtList;
12833
+ _.$_$.s4 = Entry;
12834
+ _.$_$.t4 = KtMap;
12835
+ _.$_$.u4 = KtMutableList;
12836
+ _.$_$.v4 = KtMutableMap;
12837
+ _.$_$.w4 = KtMutableSet;
12838
+ _.$_$.x4 = KtSet;
12839
+ _.$_$.y4 = addAll;
12840
+ _.$_$.z4 = arrayCopy;
12841
+ _.$_$.a5 = asList;
12842
+ _.$_$.b5 = asReversed_0;
12843
+ _.$_$.c5 = asReversed;
12844
+ _.$_$.d5 = asSequence_0;
12845
+ _.$_$.e5 = binarySearch;
12846
+ _.$_$.f5 = checkBuilderCapacity;
12847
+ _.$_$.g5 = checkCountOverflow;
12848
+ _.$_$.h5 = checkIndexOverflow;
12849
+ _.$_$.i5 = collectionSizeOrDefault;
12850
+ _.$_$.j5 = contains_0;
12851
+ _.$_$.k5 = contentEquals;
12852
+ _.$_$.l5 = contentEquals_0;
12853
+ _.$_$.m5 = contentHashCode;
12854
+ _.$_$.n5 = contentToString;
12855
+ _.$_$.o5 = copyOf_4;
12856
+ _.$_$.p5 = copyOf_2;
12857
+ _.$_$.q5 = copyOf_6;
12858
+ _.$_$.r5 = copyOf;
12859
+ _.$_$.s5 = copyOf_5;
12860
+ _.$_$.t5 = copyOf_0;
12861
+ _.$_$.u5 = copyOf_1;
12862
+ _.$_$.v5 = copyOf_7;
12863
+ _.$_$.w5 = copyOf_3;
12864
+ _.$_$.x5 = copyToArray;
12865
+ _.$_$.y5 = distinct;
12866
+ _.$_$.z5 = dropLast;
12867
+ _.$_$.a6 = drop;
12868
+ _.$_$.b6 = emptyList;
12869
+ _.$_$.c6 = emptyMap;
12870
+ _.$_$.d6 = emptySet;
12871
+ _.$_$.e6 = fill_0;
12872
+ _.$_$.f6 = filterNotNull_0;
12873
+ _.$_$.g6 = firstOrNull;
12874
+ _.$_$.h6 = first_0;
12875
+ _.$_$.i6 = first;
12876
+ _.$_$.j6 = flatten;
12877
+ _.$_$.k6 = getOrNull;
12878
+ _.$_$.l6 = getOrNull_0;
12879
+ _.$_$.m6 = getValue;
12880
+ _.$_$.n6 = hashMapOf;
12881
+ _.$_$.o6 = indexOf;
12882
+ _.$_$.p6 = get_indices_0;
12883
+ _.$_$.q6 = get_indices;
12884
+ _.$_$.r6 = get_indices_1;
12885
+ _.$_$.s6 = joinToString_0;
12886
+ _.$_$.t6 = joinToString;
12887
+ _.$_$.u6 = joinTo_0;
12888
+ _.$_$.v6 = get_lastIndex;
12889
+ _.$_$.w6 = get_lastIndex_2;
12890
+ _.$_$.x6 = get_lastIndex_3;
12891
+ _.$_$.y6 = get_lastIndex_0;
12892
+ _.$_$.z6 = lastOrNull_1;
12893
+ _.$_$.a7 = lastOrNull_2;
12894
+ _.$_$.b7 = lastOrNull;
12895
+ _.$_$.c7 = lastOrNull_0;
12896
+ _.$_$.d7 = last_0;
12897
+ _.$_$.e7 = last;
12898
+ _.$_$.f7 = listOfNotNull;
12899
+ _.$_$.g7 = listOf;
12900
+ _.$_$.h7 = listOf_0;
12901
+ _.$_$.i7 = mapCapacity;
12902
+ _.$_$.j7 = mapOf_0;
12903
+ _.$_$.k7 = minus;
12904
+ _.$_$.l7 = mutableListOf;
12905
+ _.$_$.m7 = mutableMapOf;
12906
+ _.$_$.n7 = plus_5;
12907
+ _.$_$.o7 = plus_1;
12908
+ _.$_$.p7 = plus_2;
12909
+ _.$_$.q7 = plus_4;
12910
+ _.$_$.r7 = plus_0;
12911
+ _.$_$.s7 = plus;
12912
+ _.$_$.t7 = removeLast;
12913
+ _.$_$.u7 = setOf;
12914
+ _.$_$.v7 = setOf_0;
12915
+ _.$_$.w7 = singleOrNull;
12916
+ _.$_$.x7 = single_0;
12917
+ _.$_$.y7 = slice;
12918
+ _.$_$.z7 = sortWith_0;
12919
+ _.$_$.a8 = sortedWith;
12920
+ _.$_$.b8 = sorted;
12921
+ _.$_$.c8 = sort_0;
12922
+ _.$_$.d8 = sum;
12923
+ _.$_$.e8 = takeLast;
12924
+ _.$_$.f8 = take;
12925
+ _.$_$.g8 = toBooleanArray;
12926
+ _.$_$.h8 = toCharArray;
12927
+ _.$_$.i8 = toHashSet;
12928
+ _.$_$.j8 = toList_1;
12929
+ _.$_$.k8 = toList_0;
12930
+ _.$_$.l8 = toList;
12931
+ _.$_$.m8 = toMap;
12932
+ _.$_$.n8 = toMutableList_0;
12933
+ _.$_$.o8 = toMutableMap;
12934
+ _.$_$.p8 = toSet_0;
12935
+ _.$_$.q8 = toSet;
12936
+ _.$_$.r8 = withDefault;
12937
+ _.$_$.s8 = withIndex;
12938
+ _.$_$.t8 = withIndex_0;
12939
+ _.$_$.u8 = zipWithNext;
12940
+ _.$_$.v8 = zip;
12941
+ _.$_$.w8 = compareValues;
12942
+ _.$_$.x8 = CancellationException;
12943
+ _.$_$.y8 = get_COROUTINE_SUSPENDED;
12944
+ _.$_$.z8 = CoroutineImpl;
12945
+ _.$_$.a9 = enumEntries;
12946
+ _.$_$.b9 = println;
12947
+ _.$_$.c9 = println_0;
12948
+ _.$_$.d9 = print;
12949
+ _.$_$.e9 = readlnOrNull;
12950
+ _.$_$.f9 = arrayIterator;
12951
+ _.$_$.g9 = booleanArray;
12952
+ _.$_$.h9 = captureStack;
12953
+ _.$_$.i9 = charArrayOf;
12954
+ _.$_$.j9 = charArray;
12955
+ _.$_$.k9 = charSequenceGet;
12956
+ _.$_$.l9 = charSequenceLength;
12957
+ _.$_$.m9 = charSequenceSubSequence;
12958
+ _.$_$.n9 = compareTo;
12959
+ _.$_$.o9 = defineProp;
12960
+ _.$_$.p9 = equals;
12961
+ _.$_$.q9 = fillArrayVal;
12962
+ _.$_$.r9 = getBooleanHashCode;
12963
+ _.$_$.s9 = getNumberHashCode;
12964
+ _.$_$.t9 = getPropertyCallableRef;
12965
+ _.$_$.u9 = getStringHashCode;
12966
+ _.$_$.v9 = hashCode;
12967
+ _.$_$.w9 = initMetadataForClass;
12968
+ _.$_$.x9 = initMetadataForCompanion;
12969
+ _.$_$.y9 = initMetadataForCoroutine;
12970
+ _.$_$.z9 = initMetadataForInterface;
12971
+ _.$_$.aa = initMetadataForLambda;
12972
+ _.$_$.ba = initMetadataForObject;
12973
+ _.$_$.ca = isArray;
12974
+ _.$_$.da = isBooleanArray;
12975
+ _.$_$.ea = isByteArray;
12976
+ _.$_$.fa = isCharArray;
12977
+ _.$_$.ga = isCharSequence;
12978
+ _.$_$.ha = isDoubleArray;
12979
+ _.$_$.ia = isFloatArray;
12980
+ _.$_$.ja = isIntArray;
12981
+ _.$_$.ka = isInterface;
12982
+ _.$_$.la = isLongArray;
12983
+ _.$_$.ma = isShortArray;
12984
+ _.$_$.na = iterator;
12985
+ _.$_$.oa = get_js;
12986
+ _.$_$.pa = longArray;
12987
+ _.$_$.qa = numberRangeToNumber;
12988
+ _.$_$.ra = numberToChar;
12989
+ _.$_$.sa = numberToDouble;
12990
+ _.$_$.ta = numberToInt;
12991
+ _.$_$.ua = numberToLong;
12992
+ _.$_$.va = objectCreate;
12993
+ _.$_$.wa = protoOf;
12994
+ _.$_$.xa = toByte;
12995
+ _.$_$.ya = toLong;
12996
+ _.$_$.za = toShort;
12997
+ _.$_$.ab = toString_1;
12998
+ _.$_$.bb = roundToInt;
12999
+ _.$_$.cb = withSign;
13000
+ _.$_$.db = Random_0;
13001
+ _.$_$.eb = ClosedRange;
13002
+ _.$_$.fb = IntRange;
13003
+ _.$_$.gb = coerceAtLeast_1;
13004
+ _.$_$.hb = coerceAtLeast;
13005
+ _.$_$.ib = coerceAtLeast_0;
13006
+ _.$_$.jb = coerceAtMost;
13007
+ _.$_$.kb = coerceIn;
13008
+ _.$_$.lb = coerceIn_0;
13009
+ _.$_$.mb = contains_6;
13010
+ _.$_$.nb = step;
13011
+ _.$_$.ob = until;
13012
+ _.$_$.pb = KClass;
13013
+ _.$_$.qb = KMutableProperty1;
13014
+ _.$_$.rb = KProperty1;
13015
+ _.$_$.sb = KTypeParameter;
13016
+ _.$_$.tb = asSequence_2;
13017
+ _.$_$.ub = filter;
13018
+ _.$_$.vb = generateSequence_0;
13019
+ _.$_$.wb = generateSequence;
13020
+ _.$_$.xb = joinToString_1;
13021
+ _.$_$.yb = map;
13022
+ _.$_$.zb = toList_2;
13023
+ _.$_$.ac = toSet_1;
13024
+ _.$_$.bc = StringBuilder;
13025
+ _.$_$.cc = asSequence_1;
13026
+ _.$_$.dc = chunked;
13027
+ _.$_$.ec = commonPrefixWith;
13028
+ _.$_$.fc = concatToString;
13029
+ _.$_$.gc = concatToString_0;
13030
+ _.$_$.hc = contains_7;
13031
+ _.$_$.ic = contains_8;
13032
+ _.$_$.jc = dropLast_0;
13033
+ _.$_$.kc = drop_0;
13034
+ _.$_$.lc = endsWith_1;
13035
+ _.$_$.mc = endsWith;
13036
+ _.$_$.nc = equals_0;
13037
+ _.$_$.oc = firstOrNull_0;
13038
+ _.$_$.pc = first_1;
13039
+ _.$_$.qc = indexOf_6;
13040
+ _.$_$.rc = indexOf_5;
13041
+ _.$_$.sc = isBlank;
13042
+ _.$_$.tc = isDigit;
13043
+ _.$_$.uc = isHighSurrogate;
13044
+ _.$_$.vc = isLetterOrDigit;
13045
+ _.$_$.wc = isLowSurrogate;
13046
+ _.$_$.xc = isLowerCase;
13047
+ _.$_$.yc = isUpperCase;
13048
+ _.$_$.zc = isWhitespace;
13049
+ _.$_$.ad = get_lastIndex_4;
13050
+ _.$_$.bd = lastIndexOf;
13051
+ _.$_$.cd = matches;
13052
+ _.$_$.dd = prependIndent;
13053
+ _.$_$.ed = removePrefix;
13054
+ _.$_$.fd = removeSuffix;
13055
+ _.$_$.gd = removeSurrounding;
13056
+ _.$_$.hd = repeat;
13057
+ _.$_$.id = replace;
13058
+ _.$_$.jd = replace_0;
13059
+ _.$_$.kd = single_2;
13060
+ _.$_$.ld = slice_0;
13061
+ _.$_$.md = split_0;
13062
+ _.$_$.nd = split;
13063
+ _.$_$.od = startsWith;
13064
+ _.$_$.pd = startsWith_1;
13065
+ _.$_$.qd = substringAfter;
13066
+ _.$_$.rd = substringBefore;
13067
+ _.$_$.sd = substringBefore_0;
13068
+ _.$_$.td = substring_0;
13069
+ _.$_$.ud = take_1;
13070
+ _.$_$.vd = titlecase;
13071
+ _.$_$.wd = toBooleanStrictOrNull;
13072
+ _.$_$.xd = toCharArray_0;
13073
+ _.$_$.yd = toDoubleOrNull;
13074
+ _.$_$.zd = toDouble;
13075
+ _.$_$.ae = toIntOrNull;
13076
+ _.$_$.be = toInt_0;
13077
+ _.$_$.ce = toInt;
13078
+ _.$_$.de = toList_3;
13079
+ _.$_$.ee = toLongOrNull;
13080
+ _.$_$.fe = toUByte;
13081
+ _.$_$.ge = toUInt;
13082
+ _.$_$.he = toULongOrNull;
13083
+ _.$_$.ie = toULong;
13084
+ _.$_$.je = toUShort;
13085
+ _.$_$.ke = trimIndent;
13086
+ _.$_$.le = trimMargin;
13087
+ _.$_$.me = trimStart_0;
13088
+ _.$_$.ne = trimStart;
13089
+ _.$_$.oe = trim;
13090
+ _.$_$.pe = uppercaseChar;
13091
+ _.$_$.qe = Duration;
13092
+ _.$_$.re = Char;
13093
+ _.$_$.se = ClassCastException;
13094
+ _.$_$.te = Comparable;
13095
+ _.$_$.ue = Comparator;
13096
+ _.$_$.ve = DeepRecursiveFunction;
13097
+ _.$_$.we = DeepRecursiveScope;
13098
+ _.$_$.xe = Enum;
13099
+ _.$_$.ye = Exception;
13100
+ _.$_$.ze = IllegalArgumentException;
13101
+ _.$_$.af = IllegalStateException;
13102
+ _.$_$.bf = Long;
13103
+ _.$_$.cf = NotImplementedError;
13104
+ _.$_$.df = NumberFormatException;
13105
+ _.$_$.ef = Pair;
13106
+ _.$_$.ff = Result;
13107
+ _.$_$.gf = RuntimeException;
13108
+ _.$_$.hf = THROW_CCE;
13109
+ _.$_$.if = THROW_IAE;
13110
+ _.$_$.jf = Triple;
13111
+ _.$_$.kf = UByteArray;
13112
+ _.$_$.lf = UByte;
13113
+ _.$_$.mf = UIntArray;
13114
+ _.$_$.nf = UInt;
13115
+ _.$_$.of = ULongArray;
13116
+ _.$_$.pf = ULong;
13117
+ _.$_$.qf = UShortArray;
13118
+ _.$_$.rf = UShort;
13119
+ _.$_$.sf = Unit;
13120
+ _.$_$.tf = addSuppressed;
13121
+ _.$_$.uf = arrayOf;
13122
+ _.$_$.vf = countTrailingZeroBits;
13123
+ _.$_$.wf = createFailure;
13124
+ _.$_$.xf = ensureNotNull;
13125
+ _.$_$.yf = invoke;
13126
+ _.$_$.zf = isFinite_0;
13127
+ _.$_$.ag = isFinite;
13128
+ _.$_$.bg = lazy;
13129
+ _.$_$.cg = lazy_0;
13130
+ _.$_$.dg = noWhenBranchMatchedException;
13131
+ _.$_$.eg = plus_3;
13132
+ _.$_$.fg = toString_0;
13133
+ _.$_$.gg = to;
13114
13134
  //endregion
13115
13135
  return _;
13116
13136
  }));