@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.
- package/arrow-arrow-atomic.js +2 -2
- package/arrow-arrow-continuations.js +1 -1
- package/arrow-arrow-core.js +18 -18
- package/clikt-clikt.js +1254 -1254
- package/colormath-root-colormath.js +458 -458
- package/kotlin-kotlin-stdlib.js +274 -255
- package/kotlin-kotlin-stdlib.js.map +1 -1
- package/kotlin-openapi-bindings.js +26 -26
- package/kotlin-rgxgen.js +1818 -1818
- package/kotlinx-serialization-kotlinx-serialization-core.js +74 -74
- package/kotlinx-serialization-kotlinx-serialization-json.js +78 -78
- package/markdown.js +1941 -1941
- package/mordant-mordant.js +1713 -1713
- package/package.json +1 -1
- package/wirespec-src-compiler-core.js +2518 -1786
- package/wirespec-src-compiler-core.js.map +1 -1
- package/wirespec-src-compiler-lib.js +351 -349
- package/wirespec-src-compiler-lib.js.map +1 -1
- package/wirespec-src-converter-openapi.js +327 -327
- package/wirespec-src-converter-openapi.js.map +1 -1
- package/wirespec-src-plugin-arguments.js +108 -102
- package/wirespec-src-plugin-arguments.js.map +1 -1
- package/wirespec-src-plugin-cli.js +184 -169
- package/wirespec-src-plugin-cli.js.map +1 -1
- package/wirespec-src-plugin-npm.js +18 -18
- package/wirespec-src-tools-generator.js +35 -35
- package/wirespec-src-tools-generator.js.map +1 -1
package/kotlin-kotlin-stdlib.js
CHANGED
|
@@ -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
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
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
|
|
755
|
-
return
|
|
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
|
|
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 =
|
|
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 =
|
|
12880
|
-
_.$_$.f7 =
|
|
12881
|
-
_.$_$.g7 =
|
|
12882
|
-
_.$_$.h7 =
|
|
12883
|
-
_.$_$.i7 =
|
|
12884
|
-
_.$_$.j7 =
|
|
12885
|
-
_.$_$.k7 =
|
|
12886
|
-
_.$_$.l7 =
|
|
12887
|
-
_.$_$.m7 =
|
|
12888
|
-
_.$_$.n7 =
|
|
12889
|
-
_.$_$.o7 =
|
|
12890
|
-
_.$_$.p7 =
|
|
12891
|
-
_.$_$.q7 =
|
|
12892
|
-
_.$_$.r7 =
|
|
12893
|
-
_.$_$.s7 =
|
|
12894
|
-
_.$_$.t7 =
|
|
12895
|
-
_.$_$.u7 =
|
|
12896
|
-
_.$_$.v7 =
|
|
12897
|
-
_.$_$.w7 =
|
|
12898
|
-
_.$_$.x7 =
|
|
12899
|
-
_.$_$.y7 =
|
|
12900
|
-
_.$_$.z7 =
|
|
12901
|
-
_.$_$.a8 =
|
|
12902
|
-
_.$_$.b8 =
|
|
12903
|
-
_.$_$.c8 =
|
|
12904
|
-
_.$_$.d8 =
|
|
12905
|
-
_.$_$.e8 =
|
|
12906
|
-
_.$_$.f8 =
|
|
12907
|
-
_.$_$.g8 =
|
|
12908
|
-
_.$_$.h8 =
|
|
12909
|
-
_.$_$.i8 =
|
|
12910
|
-
_.$_$.j8 =
|
|
12911
|
-
_.$_$.k8 =
|
|
12912
|
-
_.$_$.l8 =
|
|
12913
|
-
_.$_$.m8 =
|
|
12914
|
-
_.$_$.n8 =
|
|
12915
|
-
_.$_$.o8 =
|
|
12916
|
-
_.$_$.p8 =
|
|
12917
|
-
_.$_$.q8 =
|
|
12918
|
-
_.$_$.r8 =
|
|
12919
|
-
_.$_$.s8 =
|
|
12920
|
-
_.$_$.t8 =
|
|
12921
|
-
_.$_$.u8 =
|
|
12922
|
-
_.$_$.v8 =
|
|
12923
|
-
_.$_$.w8 =
|
|
12924
|
-
_.$_$.x8 =
|
|
12925
|
-
_.$_$.y8 =
|
|
12926
|
-
_.$_$.z8 =
|
|
12927
|
-
_.$_$.a9 =
|
|
12928
|
-
_.$_$.b9 =
|
|
12929
|
-
_.$_$.c9 =
|
|
12930
|
-
_.$_$.d9 =
|
|
12931
|
-
_.$_$.e9 =
|
|
12932
|
-
_.$_$.f9 =
|
|
12933
|
-
_.$_$.g9 =
|
|
12934
|
-
_.$_$.h9 =
|
|
12935
|
-
_.$_$.i9 =
|
|
12936
|
-
_.$_$.j9 =
|
|
12937
|
-
_.$_$.k9 =
|
|
12938
|
-
_.$_$.l9 =
|
|
12939
|
-
_.$_$.m9 =
|
|
12940
|
-
_.$_$.n9 =
|
|
12941
|
-
_.$_$.o9 =
|
|
12942
|
-
_.$_$.p9 =
|
|
12943
|
-
_.$_$.q9 =
|
|
12944
|
-
_.$_$.r9 =
|
|
12945
|
-
_.$_$.s9 =
|
|
12946
|
-
_.$_$.t9 =
|
|
12947
|
-
_.$_$.u9 =
|
|
12948
|
-
_.$_$.v9 =
|
|
12949
|
-
_.$_$.w9 =
|
|
12950
|
-
_.$_$.x9 =
|
|
12951
|
-
_.$_$.y9 =
|
|
12952
|
-
_.$_$.z9 =
|
|
12953
|
-
_.$_$.aa =
|
|
12954
|
-
_.$_$.ba =
|
|
12955
|
-
_.$_$.ca =
|
|
12956
|
-
_.$_$.da =
|
|
12957
|
-
_.$_$.ea =
|
|
12958
|
-
_.$_$.fa =
|
|
12959
|
-
_.$_$.ga =
|
|
12960
|
-
_.$_$.ha =
|
|
12961
|
-
_.$_$.ia =
|
|
12962
|
-
_.$_$.ja =
|
|
12963
|
-
_.$_$.ka =
|
|
12964
|
-
_.$_$.la =
|
|
12965
|
-
_.$_$.ma =
|
|
12966
|
-
_.$_$.na =
|
|
12967
|
-
_.$_$.oa =
|
|
12968
|
-
_.$_$.pa =
|
|
12969
|
-
_.$_$.qa =
|
|
12970
|
-
_.$_$.ra =
|
|
12971
|
-
_.$_$.sa =
|
|
12972
|
-
_.$_$.ta =
|
|
12973
|
-
_.$_$.ua =
|
|
12974
|
-
_.$_$.va =
|
|
12975
|
-
_.$_$.wa =
|
|
12976
|
-
_.$_$.xa =
|
|
12977
|
-
_.$_$.ya =
|
|
12978
|
-
_.$_$.za =
|
|
12979
|
-
_.$_$.ab =
|
|
12980
|
-
_.$_$.bb =
|
|
12981
|
-
_.$_$.cb =
|
|
12982
|
-
_.$_$.db =
|
|
12983
|
-
_.$_$.eb =
|
|
12984
|
-
_.$_$.fb =
|
|
12985
|
-
_.$_$.gb =
|
|
12986
|
-
_.$_$.hb =
|
|
12987
|
-
_.$_$.ib =
|
|
12988
|
-
_.$_$.jb =
|
|
12989
|
-
_.$_$.kb =
|
|
12990
|
-
_.$_$.lb =
|
|
12991
|
-
_.$_$.mb =
|
|
12992
|
-
_.$_$.nb =
|
|
12993
|
-
_.$_$.ob =
|
|
12994
|
-
_.$_$.pb =
|
|
12995
|
-
_.$_$.qb =
|
|
12996
|
-
_.$_$.rb =
|
|
12997
|
-
_.$_$.sb =
|
|
12998
|
-
_.$_$.tb =
|
|
12999
|
-
_.$_$.ub =
|
|
13000
|
-
_.$_$.vb =
|
|
13001
|
-
_.$_$.wb =
|
|
13002
|
-
_.$_$.xb =
|
|
13003
|
-
_.$_$.yb =
|
|
13004
|
-
_.$_$.zb =
|
|
13005
|
-
_.$_$.ac =
|
|
13006
|
-
_.$_$.bc =
|
|
13007
|
-
_.$_$.cc =
|
|
13008
|
-
_.$_$.dc =
|
|
13009
|
-
_.$_$.ec =
|
|
13010
|
-
_.$_$.fc =
|
|
13011
|
-
_.$_$.gc =
|
|
13012
|
-
_.$_$.hc =
|
|
13013
|
-
_.$_$.ic =
|
|
13014
|
-
_.$_$.jc =
|
|
13015
|
-
_.$_$.kc =
|
|
13016
|
-
_.$_$.lc =
|
|
13017
|
-
_.$_$.mc =
|
|
13018
|
-
_.$_$.nc =
|
|
13019
|
-
_.$_$.oc =
|
|
13020
|
-
_.$_$.pc =
|
|
13021
|
-
_.$_$.qc =
|
|
13022
|
-
_.$_$.rc =
|
|
13023
|
-
_.$_$.sc =
|
|
13024
|
-
_.$_$.tc =
|
|
13025
|
-
_.$_$.uc =
|
|
13026
|
-
_.$_$.vc =
|
|
13027
|
-
_.$_$.wc =
|
|
13028
|
-
_.$_$.xc =
|
|
13029
|
-
_.$_$.yc =
|
|
13030
|
-
_.$_$.zc =
|
|
13031
|
-
_.$_$.ad =
|
|
13032
|
-
_.$_$.bd =
|
|
13033
|
-
_.$_$.cd =
|
|
13034
|
-
_.$_$.dd =
|
|
13035
|
-
_.$_$.ed =
|
|
13036
|
-
_.$_$.fd =
|
|
13037
|
-
_.$_$.gd =
|
|
13038
|
-
_.$_$.hd =
|
|
13039
|
-
_.$_$.id =
|
|
13040
|
-
_.$_$.jd =
|
|
13041
|
-
_.$_$.kd =
|
|
13042
|
-
_.$_$.ld =
|
|
13043
|
-
_.$_$.md =
|
|
13044
|
-
_.$_$.nd =
|
|
13045
|
-
_.$_$.od =
|
|
13046
|
-
_.$_$.pd =
|
|
13047
|
-
_.$_$.qd =
|
|
13048
|
-
_.$_$.rd =
|
|
13049
|
-
_.$_$.sd =
|
|
13050
|
-
_.$_$.td =
|
|
13051
|
-
_.$_$.ud =
|
|
13052
|
-
_.$_$.vd =
|
|
13053
|
-
_.$_$.wd =
|
|
13054
|
-
_.$_$.xd =
|
|
13055
|
-
_.$_$.yd =
|
|
13056
|
-
_.$_$.zd =
|
|
13057
|
-
_.$_$.ae =
|
|
13058
|
-
_.$_$.be =
|
|
13059
|
-
_.$_$.ce =
|
|
13060
|
-
_.$_$.de =
|
|
13061
|
-
_.$_$.ee =
|
|
13062
|
-
_.$_$.fe =
|
|
13063
|
-
_.$_$.ge =
|
|
13064
|
-
_.$_$.he =
|
|
13065
|
-
_.$_$.ie =
|
|
13066
|
-
_.$_$.je =
|
|
13067
|
-
_.$_$.ke =
|
|
13068
|
-
_.$_$.le =
|
|
13069
|
-
_.$_$.me =
|
|
13070
|
-
_.$_$.ne =
|
|
13071
|
-
_.$_$.oe =
|
|
13072
|
-
_.$_$.pe =
|
|
13073
|
-
_.$_$.qe =
|
|
13074
|
-
_.$_$.re =
|
|
13075
|
-
_.$_$.se =
|
|
13076
|
-
_.$_$.te =
|
|
13077
|
-
_.$_$.ue =
|
|
13078
|
-
_.$_$.ve =
|
|
13079
|
-
_.$_$.we =
|
|
13080
|
-
_.$_$.xe =
|
|
13081
|
-
_.$_$.ye =
|
|
13082
|
-
_.$_$.ze =
|
|
13083
|
-
_.$_$.af =
|
|
13084
|
-
_.$_$.bf =
|
|
13085
|
-
_.$_$.cf =
|
|
13086
|
-
_.$_$.df =
|
|
13087
|
-
_.$_$.ef =
|
|
13088
|
-
_.$_$.ff =
|
|
13089
|
-
_.$_$.gf =
|
|
13090
|
-
_.$_$.hf =
|
|
13091
|
-
_.$_$.if =
|
|
13092
|
-
_.$_$.jf =
|
|
13093
|
-
_.$_$.kf =
|
|
13094
|
-
_.$_$.lf =
|
|
13095
|
-
_.$_$.mf =
|
|
13096
|
-
_.$_$.nf =
|
|
13097
|
-
_.$_$.of =
|
|
13098
|
-
_.$_$.pf =
|
|
13099
|
-
_.$_$.qf =
|
|
13100
|
-
_.$_$.rf =
|
|
13101
|
-
_.$_$.sf =
|
|
13102
|
-
_.$_$.tf =
|
|
13103
|
-
_.$_$.uf =
|
|
13104
|
-
_.$_$.vf =
|
|
13105
|
-
_.$_$.wf =
|
|
13106
|
-
_.$_$.xf =
|
|
13107
|
-
_.$_$.yf =
|
|
13108
|
-
_.$_$.zf =
|
|
13109
|
-
_.$_$.ag =
|
|
13110
|
-
_.$_$.bg =
|
|
13111
|
-
_.$_$.cg =
|
|
13112
|
-
_.$_$.dg =
|
|
13113
|
-
_.$_$.eg =
|
|
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
|
}));
|