game_client_logic_deb 1.8.354 → 1.8.356

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.
@@ -109,8 +109,8 @@ if (typeof String.prototype.startsWith === 'undefined') {
109
109
  }
110
110
  initMetadataForInterface(KtSet, 'Set', VOID, VOID, [Collection]);
111
111
  initMetadataForInterface(MutableIterable, 'MutableIterable');
112
- initMetadataForInterface(KtMutableSet, 'MutableSet', VOID, VOID, [KtSet, MutableIterable, Collection]);
113
- initMetadataForInterface(KtMutableList, 'MutableList', VOID, VOID, [KtList, MutableIterable, Collection]);
112
+ initMetadataForInterface(KtMutableSet, 'MutableSet', VOID, VOID, [KtSet, Collection, MutableIterable]);
113
+ initMetadataForInterface(KtMutableList, 'MutableList', VOID, VOID, [KtList, Collection, MutableIterable]);
114
114
  initMetadataForCompanion(Companion_1);
115
115
  initMetadataForInterface(Entry, 'Entry');
116
116
  initMetadataForCompanion(Companion_2);
@@ -140,7 +140,7 @@ if (typeof String.prototype.startsWith === 'undefined') {
140
140
  initMetadataForInterface(Comparator, 'Comparator');
141
141
  initMetadataForObject(Unit, 'Unit');
142
142
  initMetadataForClass(AbstractCollection, 'AbstractCollection', VOID, VOID, [Collection]);
143
- initMetadataForClass(AbstractMutableCollection, 'AbstractMutableCollection', VOID, AbstractCollection, [AbstractCollection, MutableIterable, Collection]);
143
+ initMetadataForClass(AbstractMutableCollection, 'AbstractMutableCollection', VOID, AbstractCollection, [AbstractCollection, Collection, MutableIterable]);
144
144
  initMetadataForClass(IteratorImpl, 'IteratorImpl');
145
145
  initMetadataForClass(ListIteratorImpl, 'ListIteratorImpl', VOID, IteratorImpl);
146
146
  initMetadataForClass(AbstractMutableList, 'AbstractMutableList', VOID, AbstractMutableCollection, [AbstractMutableCollection, KtMutableList]);
@@ -153,7 +153,7 @@ if (typeof String.prototype.startsWith === 'undefined') {
153
153
  initMetadataForClass(ArrayList, 'ArrayList', ArrayList_init_$Create$, AbstractMutableList, [AbstractMutableList, KtMutableList, RandomAccess]);
154
154
  initMetadataForClass(HashMap, 'HashMap', HashMap_init_$Create$, AbstractMutableMap, [AbstractMutableMap, KtMutableMap]);
155
155
  initMetadataForClass(HashMapKeys, 'HashMapKeys', VOID, AbstractMutableSet, [KtMutableSet, AbstractMutableSet]);
156
- initMetadataForClass(HashMapValues, 'HashMapValues', VOID, AbstractMutableCollection, [MutableIterable, Collection, AbstractMutableCollection]);
156
+ initMetadataForClass(HashMapValues, 'HashMapValues', VOID, AbstractMutableCollection, [Collection, MutableIterable, AbstractMutableCollection]);
157
157
  initMetadataForClass(HashMapEntrySetBase, 'HashMapEntrySetBase', VOID, AbstractMutableSet, [KtMutableSet, AbstractMutableSet]);
158
158
  initMetadataForClass(HashMapEntrySet, 'HashMapEntrySet', VOID, HashMapEntrySetBase);
159
159
  initMetadataForClass(HashMapKeysDefault$iterator$1);
@@ -1025,23 +1025,6 @@ if (typeof String.prototype.startsWith === 'undefined') {
1025
1025
  function singleOrNull(_this__u8e3s4) {
1026
1026
  return _this__u8e3s4.m() === 1 ? _this__u8e3s4.o(0) : null;
1027
1027
  }
1028
- function zip_0(_this__u8e3s4, other) {
1029
- // Inline function 'kotlin.collections.zip' call
1030
- var first = _this__u8e3s4.j();
1031
- var second = other.j();
1032
- var tmp0 = collectionSizeOrDefault(_this__u8e3s4, 10);
1033
- // Inline function 'kotlin.comparisons.minOf' call
1034
- var b = collectionSizeOrDefault(other, 10);
1035
- var tmp$ret$0 = Math.min(tmp0, b);
1036
- var list = ArrayList_init_$Create$_0(tmp$ret$0);
1037
- while (first.k() && second.k()) {
1038
- var tmp0_0 = first.l();
1039
- var t2 = second.l();
1040
- var tmp$ret$1 = to(tmp0_0, t2);
1041
- list.e(tmp$ret$1);
1042
- }
1043
- return list;
1044
- }
1045
1028
  function toList_0(_this__u8e3s4) {
1046
1029
  if (isInterface(_this__u8e3s4, Collection)) {
1047
1030
  var tmp;
@@ -1067,6 +1050,23 @@ if (typeof String.prototype.startsWith === 'undefined') {
1067
1050
  }
1068
1051
  return optimizeReadOnlyList(toMutableList_1(_this__u8e3s4));
1069
1052
  }
1053
+ function zip_0(_this__u8e3s4, other) {
1054
+ // Inline function 'kotlin.collections.zip' call
1055
+ var first = _this__u8e3s4.j();
1056
+ var second = other.j();
1057
+ var tmp0 = collectionSizeOrDefault(_this__u8e3s4, 10);
1058
+ // Inline function 'kotlin.comparisons.minOf' call
1059
+ var b = collectionSizeOrDefault(other, 10);
1060
+ var tmp$ret$0 = Math.min(tmp0, b);
1061
+ var list = ArrayList_init_$Create$_0(tmp$ret$0);
1062
+ while (first.k() && second.k()) {
1063
+ var tmp0_0 = first.l();
1064
+ var t2 = second.l();
1065
+ var tmp$ret$1 = to(tmp0_0, t2);
1066
+ list.e(tmp$ret$1);
1067
+ }
1068
+ return list;
1069
+ }
1070
1070
  function takeLast(_this__u8e3s4, n) {
1071
1071
  // Inline function 'kotlin.require' call
1072
1072
  if (!(n >= 0)) {