raspberry_games_engine_helpers 1.8.257 → 1.8.259
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.
- package/Kosi-Kaverit-kaverit.js +11 -11
- package/Kosi-Kodein-kodein-di.js +32 -32
- package/Kotlin-DateTime-library-kotlinx-datetime.js +51 -51
- package/Logic_Debertz-core.js +31 -31
- package/Logic_Debertz-engine.d.ts +6 -6
- package/Logic_Debertz-engine.js +7660 -7116
- package/Logic_Debertz-engine.js.map +1 -1
- package/kotlin-kotlin-stdlib.js +199 -160
- package/kotlin-kotlin-stdlib.js.map +1 -1
- package/kotlinx-io-kotlinx-io-core.js +10 -10
- package/kotlinx-serialization-kotlinx-serialization-core.js +71 -71
- package/kotlinx-serialization-kotlinx-serialization-json.js +73 -73
- package/package.json +1 -1
- package/raspberry-cardgame-lib-core.js +10 -10
- package/raspberry-cardgame-lib-logger.js +9 -9
- package/raspberry-cardgame-lib-random.js +11 -11
package/kotlin-kotlin-stdlib.js
CHANGED
|
@@ -57,6 +57,12 @@ if (typeof Math.clz32 === 'undefined') {
|
|
|
57
57
|
};
|
|
58
58
|
}(Math.log, Math.LN2);
|
|
59
59
|
}
|
|
60
|
+
if (typeof String.prototype.startsWith === 'undefined') {
|
|
61
|
+
Object.defineProperty(String.prototype, 'startsWith', {value: function (searchString, position) {
|
|
62
|
+
position = position || 0;
|
|
63
|
+
return this.lastIndexOf(searchString, position) === position;
|
|
64
|
+
}});
|
|
65
|
+
}
|
|
60
66
|
if (typeof String.prototype.endsWith === 'undefined') {
|
|
61
67
|
Object.defineProperty(String.prototype, 'endsWith', {value: function (searchString, position) {
|
|
62
68
|
var subjectString = this.toString();
|
|
@@ -68,12 +74,6 @@ if (typeof String.prototype.endsWith === 'undefined') {
|
|
|
68
74
|
return lastIndex !== -1 && lastIndex === position;
|
|
69
75
|
}});
|
|
70
76
|
}
|
|
71
|
-
if (typeof String.prototype.startsWith === 'undefined') {
|
|
72
|
-
Object.defineProperty(String.prototype, 'startsWith', {value: function (searchString, position) {
|
|
73
|
-
position = position || 0;
|
|
74
|
-
return this.lastIndexOf(searchString, position) === position;
|
|
75
|
-
}});
|
|
76
|
-
}
|
|
77
77
|
//endregion
|
|
78
78
|
(function (factory) {
|
|
79
79
|
if (typeof define === 'function' && define.amd)
|
|
@@ -889,6 +889,34 @@ if (typeof String.prototype.startsWith === 'undefined') {
|
|
|
889
889
|
function singleOrNull(_this__u8e3s4) {
|
|
890
890
|
return _this__u8e3s4.m() === 1 ? _this__u8e3s4.o(0) : null;
|
|
891
891
|
}
|
|
892
|
+
function take(_this__u8e3s4, n) {
|
|
893
|
+
// Inline function 'kotlin.require' call
|
|
894
|
+
// Inline function 'kotlin.contracts.contract' call
|
|
895
|
+
if (!(n >= 0)) {
|
|
896
|
+
// Inline function 'kotlin.collections.take.<anonymous>' call
|
|
897
|
+
var message = 'Requested element count ' + n + ' is less than zero.';
|
|
898
|
+
throw IllegalArgumentException_init_$Create$_0(toString_1(message));
|
|
899
|
+
}
|
|
900
|
+
if (n === 0)
|
|
901
|
+
return emptyList();
|
|
902
|
+
if (isInterface(_this__u8e3s4, Collection)) {
|
|
903
|
+
if (n >= _this__u8e3s4.m())
|
|
904
|
+
return toList_0(_this__u8e3s4);
|
|
905
|
+
if (n === 1)
|
|
906
|
+
return listOf(first_1(_this__u8e3s4));
|
|
907
|
+
}
|
|
908
|
+
var count = 0;
|
|
909
|
+
var list = ArrayList_init_$Create$_0(n);
|
|
910
|
+
var tmp0_iterator = _this__u8e3s4.j();
|
|
911
|
+
$l$loop: while (tmp0_iterator.k()) {
|
|
912
|
+
var item = tmp0_iterator.l();
|
|
913
|
+
list.e(item);
|
|
914
|
+
count = count + 1 | 0;
|
|
915
|
+
if (count === n)
|
|
916
|
+
break $l$loop;
|
|
917
|
+
}
|
|
918
|
+
return optimizeReadOnlyList(list);
|
|
919
|
+
}
|
|
892
920
|
function toList_0(_this__u8e3s4) {
|
|
893
921
|
if (isInterface(_this__u8e3s4, Collection)) {
|
|
894
922
|
var tmp;
|
|
@@ -914,6 +942,16 @@ if (typeof String.prototype.startsWith === 'undefined') {
|
|
|
914
942
|
}
|
|
915
943
|
return optimizeReadOnlyList(toMutableList_1(_this__u8e3s4));
|
|
916
944
|
}
|
|
945
|
+
function first_1(_this__u8e3s4) {
|
|
946
|
+
if (isInterface(_this__u8e3s4, KtList))
|
|
947
|
+
return first_0(_this__u8e3s4);
|
|
948
|
+
else {
|
|
949
|
+
var iterator = _this__u8e3s4.j();
|
|
950
|
+
if (!iterator.k())
|
|
951
|
+
throw NoSuchElementException_init_$Create$_0('Collection is empty.');
|
|
952
|
+
return iterator.l();
|
|
953
|
+
}
|
|
954
|
+
}
|
|
917
955
|
function toMutableSet(_this__u8e3s4) {
|
|
918
956
|
var tmp;
|
|
919
957
|
if (isInterface(_this__u8e3s4, Collection)) {
|
|
@@ -1115,7 +1153,7 @@ if (typeof String.prototype.startsWith === 'undefined') {
|
|
|
1115
1153
|
throw NoSuchElementException_init_$Create$_0('Char sequence is empty.');
|
|
1116
1154
|
return charSequenceGet(_this__u8e3s4, get_lastIndex_3(_this__u8e3s4));
|
|
1117
1155
|
}
|
|
1118
|
-
function
|
|
1156
|
+
function take_0(_this__u8e3s4, n) {
|
|
1119
1157
|
// Inline function 'kotlin.require' call
|
|
1120
1158
|
// Inline function 'kotlin.contracts.contract' call
|
|
1121
1159
|
if (!(n >= 0)) {
|
|
@@ -1136,7 +1174,7 @@ if (typeof String.prototype.startsWith === 'undefined') {
|
|
|
1136
1174
|
var message = 'Requested character count ' + n + ' is less than zero.';
|
|
1137
1175
|
throw IllegalArgumentException_init_$Create$_0(toString_1(message));
|
|
1138
1176
|
}
|
|
1139
|
-
return
|
|
1177
|
+
return take_0(_this__u8e3s4, coerceAtLeast(_this__u8e3s4.length - n | 0, 0));
|
|
1140
1178
|
}
|
|
1141
1179
|
function drop_0(_this__u8e3s4, n) {
|
|
1142
1180
|
// Inline function 'kotlin.require' call
|
|
@@ -12760,158 +12798,159 @@ if (typeof String.prototype.startsWith === 'undefined') {
|
|
|
12760
12798
|
_.$_$.k7 = sortedWith;
|
|
12761
12799
|
_.$_$.l7 = sorted;
|
|
12762
12800
|
_.$_$.m7 = sum;
|
|
12763
|
-
_.$_$.n7 =
|
|
12764
|
-
_.$_$.o7 =
|
|
12765
|
-
_.$_$.p7 =
|
|
12766
|
-
_.$_$.q7 =
|
|
12767
|
-
_.$_$.r7 =
|
|
12768
|
-
_.$_$.s7 =
|
|
12769
|
-
_.$_$.t7 =
|
|
12770
|
-
_.$_$.u7 =
|
|
12771
|
-
_.$_$.v7 =
|
|
12772
|
-
_.$_$.w7 =
|
|
12773
|
-
_.$_$.x7 =
|
|
12774
|
-
_.$_$.y7 =
|
|
12775
|
-
_.$_$.z7 =
|
|
12776
|
-
_.$_$.a8 =
|
|
12777
|
-
_.$_$.b8 =
|
|
12778
|
-
_.$_$.c8 =
|
|
12779
|
-
_.$_$.d8 =
|
|
12780
|
-
_.$_$.e8 =
|
|
12781
|
-
_.$_$.f8 =
|
|
12782
|
-
_.$_$.g8 =
|
|
12783
|
-
_.$_$.h8 =
|
|
12784
|
-
_.$_$.i8 =
|
|
12785
|
-
_.$_$.j8 =
|
|
12786
|
-
_.$_$.k8 =
|
|
12787
|
-
_.$_$.l8 =
|
|
12788
|
-
_.$_$.m8 =
|
|
12789
|
-
_.$_$.n8 =
|
|
12790
|
-
_.$_$.o8 =
|
|
12791
|
-
_.$_$.p8 =
|
|
12792
|
-
_.$_$.q8 =
|
|
12793
|
-
_.$_$.r8 =
|
|
12794
|
-
_.$_$.s8 =
|
|
12795
|
-
_.$_$.t8 =
|
|
12796
|
-
_.$_$.u8 =
|
|
12797
|
-
_.$_$.v8 =
|
|
12798
|
-
_.$_$.w8 =
|
|
12799
|
-
_.$_$.x8 =
|
|
12800
|
-
_.$_$.y8 =
|
|
12801
|
-
_.$_$.z8 =
|
|
12802
|
-
_.$_$.a9 =
|
|
12803
|
-
_.$_$.b9 =
|
|
12804
|
-
_.$_$.c9 =
|
|
12805
|
-
_.$_$.d9 =
|
|
12806
|
-
_.$_$.e9 =
|
|
12807
|
-
_.$_$.f9 =
|
|
12808
|
-
_.$_$.g9 =
|
|
12809
|
-
_.$_$.h9 =
|
|
12810
|
-
_.$_$.i9 =
|
|
12811
|
-
_.$_$.j9 =
|
|
12812
|
-
_.$_$.k9 =
|
|
12813
|
-
_.$_$.l9 =
|
|
12814
|
-
_.$_$.m9 =
|
|
12815
|
-
_.$_$.n9 =
|
|
12816
|
-
_.$_$.o9 =
|
|
12817
|
-
_.$_$.p9 =
|
|
12818
|
-
_.$_$.q9 =
|
|
12819
|
-
_.$_$.r9 =
|
|
12820
|
-
_.$_$.s9 =
|
|
12821
|
-
_.$_$.t9 =
|
|
12822
|
-
_.$_$.u9 =
|
|
12823
|
-
_.$_$.v9 =
|
|
12824
|
-
_.$_$.w9 =
|
|
12825
|
-
_.$_$.x9 =
|
|
12826
|
-
_.$_$.y9 =
|
|
12827
|
-
_.$_$.z9 =
|
|
12828
|
-
_.$_$.aa =
|
|
12829
|
-
_.$_$.ba =
|
|
12830
|
-
_.$_$.ca =
|
|
12831
|
-
_.$_$.da =
|
|
12832
|
-
_.$_$.ea =
|
|
12833
|
-
_.$_$.fa =
|
|
12834
|
-
_.$_$.ga =
|
|
12835
|
-
_.$_$.ha =
|
|
12836
|
-
_.$_$.ia =
|
|
12837
|
-
_.$_$.ja =
|
|
12838
|
-
_.$_$.ka =
|
|
12839
|
-
_.$_$.la =
|
|
12840
|
-
_.$_$.ma =
|
|
12841
|
-
_.$_$.na =
|
|
12842
|
-
_.$_$.oa =
|
|
12843
|
-
_.$_$.pa =
|
|
12844
|
-
_.$_$.qa =
|
|
12845
|
-
_.$_$.ra =
|
|
12846
|
-
_.$_$.sa =
|
|
12847
|
-
_.$_$.ta =
|
|
12848
|
-
_.$_$.ua =
|
|
12849
|
-
_.$_$.va =
|
|
12850
|
-
_.$_$.wa =
|
|
12851
|
-
_.$_$.xa =
|
|
12852
|
-
_.$_$.ya =
|
|
12853
|
-
_.$_$.za =
|
|
12854
|
-
_.$_$.ab =
|
|
12855
|
-
_.$_$.bb =
|
|
12856
|
-
_.$_$.cb =
|
|
12857
|
-
_.$_$.db =
|
|
12858
|
-
_.$_$.eb =
|
|
12859
|
-
_.$_$.fb =
|
|
12860
|
-
_.$_$.gb =
|
|
12861
|
-
_.$_$.hb =
|
|
12862
|
-
_.$_$.ib =
|
|
12863
|
-
_.$_$.jb =
|
|
12864
|
-
_.$_$.kb =
|
|
12865
|
-
_.$_$.lb =
|
|
12866
|
-
_.$_$.mb =
|
|
12867
|
-
_.$_$.nb =
|
|
12868
|
-
_.$_$.ob =
|
|
12869
|
-
_.$_$.pb =
|
|
12870
|
-
_.$_$.qb =
|
|
12871
|
-
_.$_$.rb =
|
|
12872
|
-
_.$_$.sb =
|
|
12873
|
-
_.$_$.tb =
|
|
12874
|
-
_.$_$.ub =
|
|
12875
|
-
_.$_$.vb =
|
|
12876
|
-
_.$_$.wb =
|
|
12877
|
-
_.$_$.xb =
|
|
12878
|
-
_.$_$.yb =
|
|
12879
|
-
_.$_$.zb =
|
|
12880
|
-
_.$_$.ac =
|
|
12881
|
-
_.$_$.bc =
|
|
12882
|
-
_.$_$.cc =
|
|
12883
|
-
_.$_$.dc =
|
|
12884
|
-
_.$_$.ec =
|
|
12885
|
-
_.$_$.fc =
|
|
12886
|
-
_.$_$.gc =
|
|
12887
|
-
_.$_$.hc =
|
|
12888
|
-
_.$_$.ic =
|
|
12889
|
-
_.$_$.jc =
|
|
12890
|
-
_.$_$.kc =
|
|
12891
|
-
_.$_$.lc =
|
|
12892
|
-
_.$_$.mc =
|
|
12893
|
-
_.$_$.nc =
|
|
12894
|
-
_.$_$.oc =
|
|
12895
|
-
_.$_$.pc =
|
|
12896
|
-
_.$_$.qc =
|
|
12897
|
-
_.$_$.rc =
|
|
12898
|
-
_.$_$.sc =
|
|
12899
|
-
_.$_$.tc =
|
|
12900
|
-
_.$_$.uc =
|
|
12901
|
-
_.$_$.vc =
|
|
12902
|
-
_.$_$.wc =
|
|
12903
|
-
_.$_$.xc =
|
|
12904
|
-
_.$_$.yc =
|
|
12905
|
-
_.$_$.zc =
|
|
12906
|
-
_.$_$.ad =
|
|
12907
|
-
_.$_$.bd =
|
|
12908
|
-
_.$_$.cd =
|
|
12909
|
-
_.$_$.dd =
|
|
12910
|
-
_.$_$.ed =
|
|
12911
|
-
_.$_$.fd =
|
|
12912
|
-
_.$_$.gd =
|
|
12913
|
-
_.$_$.hd =
|
|
12914
|
-
_.$_$.id =
|
|
12801
|
+
_.$_$.n7 = take;
|
|
12802
|
+
_.$_$.o7 = toBooleanArray;
|
|
12803
|
+
_.$_$.p7 = toHashSet;
|
|
12804
|
+
_.$_$.q7 = toList_0;
|
|
12805
|
+
_.$_$.r7 = toList;
|
|
12806
|
+
_.$_$.s7 = toMap;
|
|
12807
|
+
_.$_$.t7 = toMutableList_0;
|
|
12808
|
+
_.$_$.u7 = toMutableMap;
|
|
12809
|
+
_.$_$.v7 = toSet_0;
|
|
12810
|
+
_.$_$.w7 = withIndex;
|
|
12811
|
+
_.$_$.x7 = zip;
|
|
12812
|
+
_.$_$.y7 = compareValues;
|
|
12813
|
+
_.$_$.z7 = get_COROUTINE_SUSPENDED;
|
|
12814
|
+
_.$_$.a8 = CoroutineImpl;
|
|
12815
|
+
_.$_$.b8 = enumEntries;
|
|
12816
|
+
_.$_$.c8 = FunctionAdapter;
|
|
12817
|
+
_.$_$.d8 = arrayIterator;
|
|
12818
|
+
_.$_$.e8 = booleanArray;
|
|
12819
|
+
_.$_$.f8 = captureStack;
|
|
12820
|
+
_.$_$.g8 = charArray;
|
|
12821
|
+
_.$_$.h8 = charSequenceGet;
|
|
12822
|
+
_.$_$.i8 = charSequenceLength;
|
|
12823
|
+
_.$_$.j8 = charSequenceSubSequence;
|
|
12824
|
+
_.$_$.k8 = compareTo;
|
|
12825
|
+
_.$_$.l8 = defineProp;
|
|
12826
|
+
_.$_$.m8 = equals;
|
|
12827
|
+
_.$_$.n8 = fillArrayVal;
|
|
12828
|
+
_.$_$.o8 = getBooleanHashCode;
|
|
12829
|
+
_.$_$.p8 = getNumberHashCode;
|
|
12830
|
+
_.$_$.q8 = getPropertyCallableRef;
|
|
12831
|
+
_.$_$.r8 = getStringHashCode;
|
|
12832
|
+
_.$_$.s8 = hashCode;
|
|
12833
|
+
_.$_$.t8 = initMetadataForClass;
|
|
12834
|
+
_.$_$.u8 = initMetadataForCompanion;
|
|
12835
|
+
_.$_$.v8 = initMetadataForCoroutine;
|
|
12836
|
+
_.$_$.w8 = initMetadataForInterface;
|
|
12837
|
+
_.$_$.x8 = initMetadataForLambda;
|
|
12838
|
+
_.$_$.y8 = initMetadataForObject;
|
|
12839
|
+
_.$_$.z8 = isArray;
|
|
12840
|
+
_.$_$.a9 = isBooleanArray;
|
|
12841
|
+
_.$_$.b9 = isByteArray;
|
|
12842
|
+
_.$_$.c9 = isCharArray;
|
|
12843
|
+
_.$_$.d9 = isDoubleArray;
|
|
12844
|
+
_.$_$.e9 = isFloatArray;
|
|
12845
|
+
_.$_$.f9 = isIntArray;
|
|
12846
|
+
_.$_$.g9 = isInterface;
|
|
12847
|
+
_.$_$.h9 = isLongArray;
|
|
12848
|
+
_.$_$.i9 = isShortArray;
|
|
12849
|
+
_.$_$.j9 = get_js;
|
|
12850
|
+
_.$_$.k9 = longArray;
|
|
12851
|
+
_.$_$.l9 = numberRangeToNumber;
|
|
12852
|
+
_.$_$.m9 = numberToChar;
|
|
12853
|
+
_.$_$.n9 = numberToInt;
|
|
12854
|
+
_.$_$.o9 = numberToLong;
|
|
12855
|
+
_.$_$.p9 = objectCreate;
|
|
12856
|
+
_.$_$.q9 = protoOf;
|
|
12857
|
+
_.$_$.r9 = toByte;
|
|
12858
|
+
_.$_$.s9 = toLong;
|
|
12859
|
+
_.$_$.t9 = toShort;
|
|
12860
|
+
_.$_$.u9 = toString_1;
|
|
12861
|
+
_.$_$.v9 = round;
|
|
12862
|
+
_.$_$.w9 = ClosedRange;
|
|
12863
|
+
_.$_$.x9 = coerceAtLeast;
|
|
12864
|
+
_.$_$.y9 = coerceAtMost;
|
|
12865
|
+
_.$_$.z9 = contains_5;
|
|
12866
|
+
_.$_$.aa = step;
|
|
12867
|
+
_.$_$.ba = until;
|
|
12868
|
+
_.$_$.ca = KClass;
|
|
12869
|
+
_.$_$.da = KMutableProperty0;
|
|
12870
|
+
_.$_$.ea = KMutableProperty1;
|
|
12871
|
+
_.$_$.fa = KProperty0;
|
|
12872
|
+
_.$_$.ga = KProperty1;
|
|
12873
|
+
_.$_$.ha = KTypeParameter;
|
|
12874
|
+
_.$_$.ia = filter;
|
|
12875
|
+
_.$_$.ja = firstOrNull_1;
|
|
12876
|
+
_.$_$.ka = flatMap;
|
|
12877
|
+
_.$_$.la = mapNotNull;
|
|
12878
|
+
_.$_$.ma = map;
|
|
12879
|
+
_.$_$.na = toList_1;
|
|
12880
|
+
_.$_$.oa = contains_7;
|
|
12881
|
+
_.$_$.pa = equals_0;
|
|
12882
|
+
_.$_$.qa = indexOf_5;
|
|
12883
|
+
_.$_$.ra = indexOf_4;
|
|
12884
|
+
_.$_$.sa = isBlank;
|
|
12885
|
+
_.$_$.ta = get_lastIndex_3;
|
|
12886
|
+
_.$_$.ua = lastIndexOf_0;
|
|
12887
|
+
_.$_$.va = padStart;
|
|
12888
|
+
_.$_$.wa = removePrefix;
|
|
12889
|
+
_.$_$.xa = removeSuffix;
|
|
12890
|
+
_.$_$.ya = repeat;
|
|
12891
|
+
_.$_$.za = replace;
|
|
12892
|
+
_.$_$.ab = single_2;
|
|
12893
|
+
_.$_$.bb = startsWith;
|
|
12894
|
+
_.$_$.cb = startsWith_1;
|
|
12895
|
+
_.$_$.db = substringAfter;
|
|
12896
|
+
_.$_$.eb = substringBefore;
|
|
12897
|
+
_.$_$.fb = toBooleanStrictOrNull;
|
|
12898
|
+
_.$_$.gb = toDoubleOrNull;
|
|
12899
|
+
_.$_$.hb = toDouble;
|
|
12900
|
+
_.$_$.ib = toIntOrNull;
|
|
12901
|
+
_.$_$.jb = toInt;
|
|
12902
|
+
_.$_$.kb = toLongOrNull;
|
|
12903
|
+
_.$_$.lb = toUByte;
|
|
12904
|
+
_.$_$.mb = toUInt;
|
|
12905
|
+
_.$_$.nb = toULongOrNull;
|
|
12906
|
+
_.$_$.ob = toULong;
|
|
12907
|
+
_.$_$.pb = toUShort;
|
|
12908
|
+
_.$_$.qb = trimIndent;
|
|
12909
|
+
_.$_$.rb = Duration;
|
|
12910
|
+
_.$_$.sb = toDuration_1;
|
|
12911
|
+
_.$_$.tb = toDuration_0;
|
|
12912
|
+
_.$_$.ub = toDuration;
|
|
12913
|
+
_.$_$.vb = Uuid;
|
|
12914
|
+
_.$_$.wb = ArithmeticException;
|
|
12915
|
+
_.$_$.xb = Char;
|
|
12916
|
+
_.$_$.yb = Comparable;
|
|
12917
|
+
_.$_$.zb = Comparator;
|
|
12918
|
+
_.$_$.ac = DeepRecursiveFunction;
|
|
12919
|
+
_.$_$.bc = DeepRecursiveScope;
|
|
12920
|
+
_.$_$.cc = Enum;
|
|
12921
|
+
_.$_$.dc = Exception;
|
|
12922
|
+
_.$_$.ec = IllegalArgumentException;
|
|
12923
|
+
_.$_$.fc = Long;
|
|
12924
|
+
_.$_$.gc = Pair;
|
|
12925
|
+
_.$_$.hc = Result;
|
|
12926
|
+
_.$_$.ic = RuntimeException;
|
|
12927
|
+
_.$_$.jc = THROW_CCE;
|
|
12928
|
+
_.$_$.kc = THROW_IAE;
|
|
12929
|
+
_.$_$.lc = Triple;
|
|
12930
|
+
_.$_$.mc = UByteArray;
|
|
12931
|
+
_.$_$.nc = UByte;
|
|
12932
|
+
_.$_$.oc = UIntArray;
|
|
12933
|
+
_.$_$.pc = UInt;
|
|
12934
|
+
_.$_$.qc = ULongArray;
|
|
12935
|
+
_.$_$.rc = ULong;
|
|
12936
|
+
_.$_$.sc = UShortArray;
|
|
12937
|
+
_.$_$.tc = UShort;
|
|
12938
|
+
_.$_$.uc = Unit;
|
|
12939
|
+
_.$_$.vc = arrayOf;
|
|
12940
|
+
_.$_$.wc = countTrailingZeroBits;
|
|
12941
|
+
_.$_$.xc = createFailure;
|
|
12942
|
+
_.$_$.yc = ensureNotNull;
|
|
12943
|
+
_.$_$.zc = invoke;
|
|
12944
|
+
_.$_$.ad = isFinite;
|
|
12945
|
+
_.$_$.bd = isFinite_0;
|
|
12946
|
+
_.$_$.cd = lazy_0;
|
|
12947
|
+
_.$_$.dd = lazy;
|
|
12948
|
+
_.$_$.ed = noWhenBranchMatchedException;
|
|
12949
|
+
_.$_$.fd = plus_2;
|
|
12950
|
+
_.$_$.gd = printStackTrace;
|
|
12951
|
+
_.$_$.hd = stackTraceToString;
|
|
12952
|
+
_.$_$.id = toString_0;
|
|
12953
|
+
_.$_$.jd = to;
|
|
12915
12954
|
//endregion
|
|
12916
12955
|
return _;
|
|
12917
12956
|
}));
|