@tsonic/dotnet 10.0.35 → 10.0.37
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/__internal/extensions/index.d.ts +169 -169
- package/package.json +1 -1
|
@@ -92,59 +92,59 @@ interface __TsonicExtMethods_System {
|
|
|
92
92
|
AsSpan(this: string, range: System.Range): Rewrap<this, System.ReadOnlySpan_1<System_Internal.Char>>;
|
|
93
93
|
AsSpan(this: string, start: int, length: int): Rewrap<this, System.ReadOnlySpan_1<System_Internal.Char>>;
|
|
94
94
|
BinarySearch<T>(this: System.ReadOnlySpan_1<T>, comparable: System.IComparable_1<T>): Rewrap<this, int>;
|
|
95
|
-
BinarySearch<T, TComparable
|
|
96
|
-
BinarySearch<T, TComparer
|
|
95
|
+
BinarySearch<T, TComparable extends System.IComparable_1<T>>(this: System.ReadOnlySpan_1<T>, comparable: TComparable): Rewrap<this, int>;
|
|
96
|
+
BinarySearch<T, TComparer extends System_Collections_Generic.IComparer_1<T>>(this: System.ReadOnlySpan_1<T>, value: T, comparer: TComparer): Rewrap<this, int>;
|
|
97
97
|
BinarySearch<T>(this: System.Span_1<T>, comparable: System.IComparable_1<T>): Rewrap<this, int>;
|
|
98
|
-
BinarySearch<T, TComparable
|
|
99
|
-
BinarySearch<T, TComparer
|
|
98
|
+
BinarySearch<T, TComparable extends System.IComparable_1<T>>(this: System.Span_1<T>, comparable: TComparable): Rewrap<this, int>;
|
|
99
|
+
BinarySearch<T, TComparer extends System_Collections_Generic.IComparer_1<T>>(this: System.Span_1<T>, value: T, comparer: TComparer): Rewrap<this, int>;
|
|
100
100
|
CommonPrefixLength<T>(this: System.ReadOnlySpan_1<T>, other: System.ReadOnlySpan_1<T>): Rewrap<this, int>;
|
|
101
101
|
CommonPrefixLength<T>(this: System.ReadOnlySpan_1<T>, other: System.ReadOnlySpan_1<T>, comparer: System_Collections_Generic.IEqualityComparer_1<T>): Rewrap<this, int>;
|
|
102
102
|
CommonPrefixLength<T>(this: System.Span_1<T>, other: System.ReadOnlySpan_1<T>): Rewrap<this, int>;
|
|
103
103
|
CommonPrefixLength<T>(this: System.Span_1<T>, other: System.ReadOnlySpan_1<T>, comparer: System_Collections_Generic.IEqualityComparer_1<T>): Rewrap<this, int>;
|
|
104
104
|
CompareTo(this: System.ReadOnlySpan_1<System_Internal.Char>, other: System.ReadOnlySpan_1<System_Internal.Char>, comparisonType: System.StringComparison): Rewrap<this, int>;
|
|
105
|
-
Contains<T
|
|
105
|
+
Contains<T extends System.IEquatable_1<T>>(this: System.ReadOnlySpan_1<T>, value: T): Rewrap<this, boolean>;
|
|
106
106
|
Contains<T>(this: System.ReadOnlySpan_1<T>, value: T, comparer?: System_Collections_Generic.IEqualityComparer_1<T>): Rewrap<this, boolean>;
|
|
107
107
|
Contains(this: System.ReadOnlySpan_1<System_Internal.Char>, value: System.ReadOnlySpan_1<System_Internal.Char>, comparisonType: System.StringComparison): Rewrap<this, boolean>;
|
|
108
|
-
Contains<T
|
|
109
|
-
ContainsAny<T
|
|
108
|
+
Contains<T extends System.IEquatable_1<T>>(this: System.Span_1<T>, value: T): Rewrap<this, boolean>;
|
|
109
|
+
ContainsAny<T extends System.IEquatable_1<T>>(this: System.ReadOnlySpan_1<T>, value0: T, value1: T): Rewrap<this, boolean>;
|
|
110
110
|
ContainsAny<T>(this: System.ReadOnlySpan_1<T>, value0: T, value1: T, comparer?: System_Collections_Generic.IEqualityComparer_1<T>): Rewrap<this, boolean>;
|
|
111
|
-
ContainsAny<T
|
|
111
|
+
ContainsAny<T extends System.IEquatable_1<T>>(this: System.ReadOnlySpan_1<T>, value0: T, value1: T, value2: T): Rewrap<this, boolean>;
|
|
112
112
|
ContainsAny<T>(this: System.ReadOnlySpan_1<T>, value0: T, value1: T, value2: T, comparer?: System_Collections_Generic.IEqualityComparer_1<T>): Rewrap<this, boolean>;
|
|
113
|
-
ContainsAny<T
|
|
113
|
+
ContainsAny<T extends System.IEquatable_1<T>>(this: System.ReadOnlySpan_1<T>, values: System.ReadOnlySpan_1<T>): Rewrap<this, boolean>;
|
|
114
114
|
ContainsAny<T>(this: System.ReadOnlySpan_1<T>, values: System.ReadOnlySpan_1<T>, comparer?: System_Collections_Generic.IEqualityComparer_1<T>): Rewrap<this, boolean>;
|
|
115
|
-
ContainsAny<T
|
|
115
|
+
ContainsAny<T extends System.IEquatable_1<T>>(this: System.ReadOnlySpan_1<T>, values: System_Buffers.SearchValues_1<T>): Rewrap<this, boolean>;
|
|
116
116
|
ContainsAny(this: System.ReadOnlySpan_1<System_Internal.Char>, values: System_Buffers.SearchValues_1<System_Internal.String>): Rewrap<this, boolean>;
|
|
117
|
-
ContainsAny<T
|
|
118
|
-
ContainsAny<T
|
|
119
|
-
ContainsAny<T
|
|
120
|
-
ContainsAny<T
|
|
117
|
+
ContainsAny<T extends System.IEquatable_1<T>>(this: System.Span_1<T>, value0: T, value1: T): Rewrap<this, boolean>;
|
|
118
|
+
ContainsAny<T extends System.IEquatable_1<T>>(this: System.Span_1<T>, value0: T, value1: T, value2: T): Rewrap<this, boolean>;
|
|
119
|
+
ContainsAny<T extends System.IEquatable_1<T>>(this: System.Span_1<T>, values: System.ReadOnlySpan_1<T>): Rewrap<this, boolean>;
|
|
120
|
+
ContainsAny<T extends System.IEquatable_1<T>>(this: System.Span_1<T>, values: System_Buffers.SearchValues_1<T>): Rewrap<this, boolean>;
|
|
121
121
|
ContainsAny(this: System.Span_1<System_Internal.Char>, values: System_Buffers.SearchValues_1<System_Internal.String>): Rewrap<this, boolean>;
|
|
122
|
-
ContainsAnyExcept<T
|
|
122
|
+
ContainsAnyExcept<T extends System.IEquatable_1<T>>(this: System.ReadOnlySpan_1<T>, value: T): Rewrap<this, boolean>;
|
|
123
123
|
ContainsAnyExcept<T>(this: System.ReadOnlySpan_1<T>, value: T, comparer?: System_Collections_Generic.IEqualityComparer_1<T>): Rewrap<this, boolean>;
|
|
124
|
-
ContainsAnyExcept<T
|
|
124
|
+
ContainsAnyExcept<T extends System.IEquatable_1<T>>(this: System.ReadOnlySpan_1<T>, value0: T, value1: T): Rewrap<this, boolean>;
|
|
125
125
|
ContainsAnyExcept<T>(this: System.ReadOnlySpan_1<T>, value0: T, value1: T, comparer?: System_Collections_Generic.IEqualityComparer_1<T>): Rewrap<this, boolean>;
|
|
126
|
-
ContainsAnyExcept<T
|
|
126
|
+
ContainsAnyExcept<T extends System.IEquatable_1<T>>(this: System.ReadOnlySpan_1<T>, value0: T, value1: T, value2: T): Rewrap<this, boolean>;
|
|
127
127
|
ContainsAnyExcept<T>(this: System.ReadOnlySpan_1<T>, value0: T, value1: T, value2: T, comparer?: System_Collections_Generic.IEqualityComparer_1<T>): Rewrap<this, boolean>;
|
|
128
|
-
ContainsAnyExcept<T
|
|
128
|
+
ContainsAnyExcept<T extends System.IEquatable_1<T>>(this: System.ReadOnlySpan_1<T>, values: System.ReadOnlySpan_1<T>): Rewrap<this, boolean>;
|
|
129
129
|
ContainsAnyExcept<T>(this: System.ReadOnlySpan_1<T>, values: System.ReadOnlySpan_1<T>, comparer?: System_Collections_Generic.IEqualityComparer_1<T>): Rewrap<this, boolean>;
|
|
130
|
-
ContainsAnyExcept<T
|
|
131
|
-
ContainsAnyExcept<T
|
|
132
|
-
ContainsAnyExcept<T
|
|
133
|
-
ContainsAnyExcept<T
|
|
134
|
-
ContainsAnyExcept<T
|
|
135
|
-
ContainsAnyExcept<T
|
|
136
|
-
ContainsAnyExceptInRange<T
|
|
137
|
-
ContainsAnyExceptInRange<T
|
|
138
|
-
ContainsAnyInRange<T
|
|
139
|
-
ContainsAnyInRange<T
|
|
140
|
-
Count<T
|
|
130
|
+
ContainsAnyExcept<T extends System.IEquatable_1<T>>(this: System.ReadOnlySpan_1<T>, values: System_Buffers.SearchValues_1<T>): Rewrap<this, boolean>;
|
|
131
|
+
ContainsAnyExcept<T extends System.IEquatable_1<T>>(this: System.Span_1<T>, value: T): Rewrap<this, boolean>;
|
|
132
|
+
ContainsAnyExcept<T extends System.IEquatable_1<T>>(this: System.Span_1<T>, value0: T, value1: T): Rewrap<this, boolean>;
|
|
133
|
+
ContainsAnyExcept<T extends System.IEquatable_1<T>>(this: System.Span_1<T>, value0: T, value1: T, value2: T): Rewrap<this, boolean>;
|
|
134
|
+
ContainsAnyExcept<T extends System.IEquatable_1<T>>(this: System.Span_1<T>, values: System.ReadOnlySpan_1<T>): Rewrap<this, boolean>;
|
|
135
|
+
ContainsAnyExcept<T extends System.IEquatable_1<T>>(this: System.Span_1<T>, values: System_Buffers.SearchValues_1<T>): Rewrap<this, boolean>;
|
|
136
|
+
ContainsAnyExceptInRange<T extends System.IComparable_1<T>>(this: System.ReadOnlySpan_1<T>, lowInclusive: T, highInclusive: T): Rewrap<this, boolean>;
|
|
137
|
+
ContainsAnyExceptInRange<T extends System.IComparable_1<T>>(this: System.Span_1<T>, lowInclusive: T, highInclusive: T): Rewrap<this, boolean>;
|
|
138
|
+
ContainsAnyInRange<T extends System.IComparable_1<T>>(this: System.ReadOnlySpan_1<T>, lowInclusive: T, highInclusive: T): Rewrap<this, boolean>;
|
|
139
|
+
ContainsAnyInRange<T extends System.IComparable_1<T>>(this: System.Span_1<T>, lowInclusive: T, highInclusive: T): Rewrap<this, boolean>;
|
|
140
|
+
Count<T extends System.IEquatable_1<T>>(this: System.ReadOnlySpan_1<T>, value: T): Rewrap<this, int>;
|
|
141
141
|
Count<T>(this: System.ReadOnlySpan_1<T>, value: T, comparer?: System_Collections_Generic.IEqualityComparer_1<T>): Rewrap<this, int>;
|
|
142
|
-
Count<T
|
|
142
|
+
Count<T extends System.IEquatable_1<T>>(this: System.ReadOnlySpan_1<T>, value: System.ReadOnlySpan_1<T>): Rewrap<this, int>;
|
|
143
143
|
Count<T>(this: System.ReadOnlySpan_1<T>, value: System.ReadOnlySpan_1<T>, comparer?: System_Collections_Generic.IEqualityComparer_1<T>): Rewrap<this, int>;
|
|
144
|
-
Count<T
|
|
145
|
-
Count<T
|
|
146
|
-
CountAny<T
|
|
147
|
-
CountAny<T
|
|
144
|
+
Count<T extends System.IEquatable_1<T>>(this: System.Span_1<T>, value: T): Rewrap<this, int>;
|
|
145
|
+
Count<T extends System.IEquatable_1<T>>(this: System.Span_1<T>, value: System.ReadOnlySpan_1<T>): Rewrap<this, int>;
|
|
146
|
+
CountAny<T extends System.IEquatable_1<T>>(this: System.ReadOnlySpan_1<T>, values: System_Buffers.SearchValues_1<T>): Rewrap<this, int>;
|
|
147
|
+
CountAny<T extends System.IEquatable_1<T>>(this: System.ReadOnlySpan_1<T>, values: System.ReadOnlySpan_1<T>): Rewrap<this, int>;
|
|
148
148
|
CountAny<T>(this: System.ReadOnlySpan_1<T>, values: System.ReadOnlySpan_1<T>, comparer?: System_Collections_Generic.IEqualityComparer_1<T>): Rewrap<this, int>;
|
|
149
149
|
Deconstruct<T1>(this: System.Tuple_1<T1>, item1: T1): Rewrap<this, void>;
|
|
150
150
|
Deconstruct<T1, T2>(this: System.Tuple_2<T1, T2>, item1: T1, item2: T2): Rewrap<this, void>;
|
|
@@ -167,138 +167,138 @@ interface __TsonicExtMethods_System {
|
|
|
167
167
|
Deconstruct<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17, T18, T19>(this: System.Tuple_8<T1, T2, T3, T4, T5, T6, T7, System.Tuple_8<T8, T9, T10, T11, T12, T13, T14, System.Tuple_5<T15, T16, T17, T18, T19>>>, item1: T1, item2: T2, item3: T3, item4: T4, item5: T5, item6: T6, item7: T7, item8: T8, item9: T9, item10: T10, item11: T11, item12: T12, item13: T13, item14: T14, item15: T15, item16: T16, item17: T17, item18: T18, item19: T19): Rewrap<this, void>;
|
|
168
168
|
Deconstruct<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17, T18, T19, T20>(this: System.Tuple_8<T1, T2, T3, T4, T5, T6, T7, System.Tuple_8<T8, T9, T10, T11, T12, T13, T14, System.Tuple_6<T15, T16, T17, T18, T19, T20>>>, item1: T1, item2: T2, item3: T3, item4: T4, item5: T5, item6: T6, item7: T7, item8: T8, item9: T9, item10: T10, item11: T11, item12: T12, item13: T13, item14: T14, item15: T15, item16: T16, item17: T17, item18: T18, item19: T19, item20: T20): Rewrap<this, void>;
|
|
169
169
|
Deconstruct<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17, T18, T19, T20, T21>(this: System.Tuple_8<T1, T2, T3, T4, T5, T6, T7, System.Tuple_8<T8, T9, T10, T11, T12, T13, T14, System.Tuple_7<T15, T16, T17, T18, T19, T20, T21>>>, item1: T1, item2: T2, item3: T3, item4: T4, item5: T5, item6: T6, item7: T7, item8: T8, item9: T9, item10: T10, item11: T11, item12: T12, item13: T13, item14: T14, item15: T15, item16: T16, item17: T17, item18: T18, item19: T19, item20: T20, item21: T21): Rewrap<this, void>;
|
|
170
|
-
EndsWith<T
|
|
170
|
+
EndsWith<T extends System.IEquatable_1<T>>(this: System.ReadOnlySpan_1<T>, value: System.ReadOnlySpan_1<T>): Rewrap<this, boolean>;
|
|
171
171
|
EndsWith<T>(this: System.ReadOnlySpan_1<T>, value: System.ReadOnlySpan_1<T>, comparer?: System_Collections_Generic.IEqualityComparer_1<T>): Rewrap<this, boolean>;
|
|
172
|
-
EndsWith<T
|
|
172
|
+
EndsWith<T extends System.IEquatable_1<T>>(this: System.ReadOnlySpan_1<T>, value: T): Rewrap<this, boolean>;
|
|
173
173
|
EndsWith<T>(this: System.ReadOnlySpan_1<T>, value: T, comparer?: System_Collections_Generic.IEqualityComparer_1<T>): Rewrap<this, boolean>;
|
|
174
174
|
EndsWith(this: System.ReadOnlySpan_1<System_Internal.Char>, value: System.ReadOnlySpan_1<System_Internal.Char>, comparisonType: System.StringComparison): Rewrap<this, boolean>;
|
|
175
|
-
EndsWith<T
|
|
175
|
+
EndsWith<T extends System.IEquatable_1<T>>(this: System.Span_1<T>, value: System.ReadOnlySpan_1<T>): Rewrap<this, boolean>;
|
|
176
176
|
EnumerateLines(this: System.ReadOnlySpan_1<System_Internal.Char>): Rewrap<this, System_Text.SpanLineEnumerator>;
|
|
177
177
|
EnumerateLines(this: System.Span_1<System_Internal.Char>): Rewrap<this, System_Text.SpanLineEnumerator>;
|
|
178
178
|
EnumerateRunes(this: System.ReadOnlySpan_1<System_Internal.Char>): Rewrap<this, System_Text.SpanRuneEnumerator>;
|
|
179
179
|
EnumerateRunes(this: System.Span_1<System_Internal.Char>): Rewrap<this, System_Text.SpanRuneEnumerator>;
|
|
180
180
|
Equals(this: System.ReadOnlySpan_1<System_Internal.Char>, other: System.ReadOnlySpan_1<System_Internal.Char>, comparisonType: System.StringComparison): Rewrap<this, boolean>;
|
|
181
181
|
GetNormalizedLength(this: System.ReadOnlySpan_1<System_Internal.Char>, normalizationForm?: System_Text.NormalizationForm): Rewrap<this, int>;
|
|
182
|
-
IndexOf<T
|
|
182
|
+
IndexOf<T extends System.IEquatable_1<T>>(this: System.ReadOnlySpan_1<T>, value: T): Rewrap<this, int>;
|
|
183
183
|
IndexOf<T>(this: System.ReadOnlySpan_1<T>, value: T, comparer?: System_Collections_Generic.IEqualityComparer_1<T>): Rewrap<this, int>;
|
|
184
|
-
IndexOf<T
|
|
184
|
+
IndexOf<T extends System.IEquatable_1<T>>(this: System.ReadOnlySpan_1<T>, value: System.ReadOnlySpan_1<T>): Rewrap<this, int>;
|
|
185
185
|
IndexOf<T>(this: System.ReadOnlySpan_1<T>, value: System.ReadOnlySpan_1<T>, comparer?: System_Collections_Generic.IEqualityComparer_1<T>): Rewrap<this, int>;
|
|
186
186
|
IndexOf(this: System.ReadOnlySpan_1<System_Internal.Char>, value: System.ReadOnlySpan_1<System_Internal.Char>, comparisonType: System.StringComparison): Rewrap<this, int>;
|
|
187
|
-
IndexOf<T
|
|
188
|
-
IndexOf<T
|
|
189
|
-
IndexOfAny<T
|
|
187
|
+
IndexOf<T extends System.IEquatable_1<T>>(this: System.Span_1<T>, value: T): Rewrap<this, int>;
|
|
188
|
+
IndexOf<T extends System.IEquatable_1<T>>(this: System.Span_1<T>, value: System.ReadOnlySpan_1<T>): Rewrap<this, int>;
|
|
189
|
+
IndexOfAny<T extends System.IEquatable_1<T>>(this: System.ReadOnlySpan_1<T>, value0: T, value1: T): Rewrap<this, int>;
|
|
190
190
|
IndexOfAny<T>(this: System.ReadOnlySpan_1<T>, value0: T, value1: T, comparer?: System_Collections_Generic.IEqualityComparer_1<T>): Rewrap<this, int>;
|
|
191
|
-
IndexOfAny<T
|
|
191
|
+
IndexOfAny<T extends System.IEquatable_1<T>>(this: System.ReadOnlySpan_1<T>, value0: T, value1: T, value2: T): Rewrap<this, int>;
|
|
192
192
|
IndexOfAny<T>(this: System.ReadOnlySpan_1<T>, value0: T, value1: T, value2: T, comparer?: System_Collections_Generic.IEqualityComparer_1<T>): Rewrap<this, int>;
|
|
193
|
-
IndexOfAny<T
|
|
193
|
+
IndexOfAny<T extends System.IEquatable_1<T>>(this: System.ReadOnlySpan_1<T>, values: System.ReadOnlySpan_1<T>): Rewrap<this, int>;
|
|
194
194
|
IndexOfAny<T>(this: System.ReadOnlySpan_1<T>, values: System.ReadOnlySpan_1<T>, comparer?: System_Collections_Generic.IEqualityComparer_1<T>): Rewrap<this, int>;
|
|
195
|
-
IndexOfAny<T
|
|
195
|
+
IndexOfAny<T extends System.IEquatable_1<T>>(this: System.ReadOnlySpan_1<T>, values: System_Buffers.SearchValues_1<T>): Rewrap<this, int>;
|
|
196
196
|
IndexOfAny(this: System.ReadOnlySpan_1<System_Internal.Char>, values: System_Buffers.SearchValues_1<System_Internal.String>): Rewrap<this, int>;
|
|
197
|
-
IndexOfAny<T
|
|
198
|
-
IndexOfAny<T
|
|
199
|
-
IndexOfAny<T
|
|
200
|
-
IndexOfAny<T
|
|
197
|
+
IndexOfAny<T extends System.IEquatable_1<T>>(this: System.Span_1<T>, value0: T, value1: T): Rewrap<this, int>;
|
|
198
|
+
IndexOfAny<T extends System.IEquatable_1<T>>(this: System.Span_1<T>, value0: T, value1: T, value2: T): Rewrap<this, int>;
|
|
199
|
+
IndexOfAny<T extends System.IEquatable_1<T>>(this: System.Span_1<T>, values: System.ReadOnlySpan_1<T>): Rewrap<this, int>;
|
|
200
|
+
IndexOfAny<T extends System.IEquatable_1<T>>(this: System.Span_1<T>, values: System_Buffers.SearchValues_1<T>): Rewrap<this, int>;
|
|
201
201
|
IndexOfAny(this: System.Span_1<System_Internal.Char>, values: System_Buffers.SearchValues_1<System_Internal.String>): Rewrap<this, int>;
|
|
202
|
-
IndexOfAnyExcept<T
|
|
202
|
+
IndexOfAnyExcept<T extends System.IEquatable_1<T>>(this: System.ReadOnlySpan_1<T>, value: T): Rewrap<this, int>;
|
|
203
203
|
IndexOfAnyExcept<T>(this: System.ReadOnlySpan_1<T>, value: T, comparer?: System_Collections_Generic.IEqualityComparer_1<T>): Rewrap<this, int>;
|
|
204
|
-
IndexOfAnyExcept<T
|
|
204
|
+
IndexOfAnyExcept<T extends System.IEquatable_1<T>>(this: System.ReadOnlySpan_1<T>, value0: T, value1: T): Rewrap<this, int>;
|
|
205
205
|
IndexOfAnyExcept<T>(this: System.ReadOnlySpan_1<T>, value0: T, value1: T, comparer?: System_Collections_Generic.IEqualityComparer_1<T>): Rewrap<this, int>;
|
|
206
|
-
IndexOfAnyExcept<T
|
|
206
|
+
IndexOfAnyExcept<T extends System.IEquatable_1<T>>(this: System.ReadOnlySpan_1<T>, value0: T, value1: T, value2: T): Rewrap<this, int>;
|
|
207
207
|
IndexOfAnyExcept<T>(this: System.ReadOnlySpan_1<T>, value0: T, value1: T, value2: T, comparer?: System_Collections_Generic.IEqualityComparer_1<T>): Rewrap<this, int>;
|
|
208
|
-
IndexOfAnyExcept<T
|
|
208
|
+
IndexOfAnyExcept<T extends System.IEquatable_1<T>>(this: System.ReadOnlySpan_1<T>, values: System.ReadOnlySpan_1<T>): Rewrap<this, int>;
|
|
209
209
|
IndexOfAnyExcept<T>(this: System.ReadOnlySpan_1<T>, values: System.ReadOnlySpan_1<T>, comparer?: System_Collections_Generic.IEqualityComparer_1<T>): Rewrap<this, int>;
|
|
210
|
-
IndexOfAnyExcept<T
|
|
211
|
-
IndexOfAnyExcept<T
|
|
212
|
-
IndexOfAnyExcept<T
|
|
213
|
-
IndexOfAnyExcept<T
|
|
214
|
-
IndexOfAnyExcept<T
|
|
215
|
-
IndexOfAnyExcept<T
|
|
216
|
-
IndexOfAnyExceptInRange<T
|
|
217
|
-
IndexOfAnyExceptInRange<T
|
|
218
|
-
IndexOfAnyInRange<T
|
|
219
|
-
IndexOfAnyInRange<T
|
|
210
|
+
IndexOfAnyExcept<T extends System.IEquatable_1<T>>(this: System.ReadOnlySpan_1<T>, values: System_Buffers.SearchValues_1<T>): Rewrap<this, int>;
|
|
211
|
+
IndexOfAnyExcept<T extends System.IEquatable_1<T>>(this: System.Span_1<T>, value: T): Rewrap<this, int>;
|
|
212
|
+
IndexOfAnyExcept<T extends System.IEquatable_1<T>>(this: System.Span_1<T>, value0: T, value1: T): Rewrap<this, int>;
|
|
213
|
+
IndexOfAnyExcept<T extends System.IEquatable_1<T>>(this: System.Span_1<T>, value0: T, value1: T, value2: T): Rewrap<this, int>;
|
|
214
|
+
IndexOfAnyExcept<T extends System.IEquatable_1<T>>(this: System.Span_1<T>, values: System.ReadOnlySpan_1<T>): Rewrap<this, int>;
|
|
215
|
+
IndexOfAnyExcept<T extends System.IEquatable_1<T>>(this: System.Span_1<T>, values: System_Buffers.SearchValues_1<T>): Rewrap<this, int>;
|
|
216
|
+
IndexOfAnyExceptInRange<T extends System.IComparable_1<T>>(this: System.ReadOnlySpan_1<T>, lowInclusive: T, highInclusive: T): Rewrap<this, int>;
|
|
217
|
+
IndexOfAnyExceptInRange<T extends System.IComparable_1<T>>(this: System.Span_1<T>, lowInclusive: T, highInclusive: T): Rewrap<this, int>;
|
|
218
|
+
IndexOfAnyInRange<T extends System.IComparable_1<T>>(this: System.ReadOnlySpan_1<T>, lowInclusive: T, highInclusive: T): Rewrap<this, int>;
|
|
219
|
+
IndexOfAnyInRange<T extends System.IComparable_1<T>>(this: System.Span_1<T>, lowInclusive: T, highInclusive: T): Rewrap<this, int>;
|
|
220
220
|
IsNormalized(this: System.ReadOnlySpan_1<System_Internal.Char>, normalizationForm?: System_Text.NormalizationForm): Rewrap<this, boolean>;
|
|
221
221
|
IsNormalized(this: string): Rewrap<this, boolean>;
|
|
222
222
|
IsNormalized(this: string, normalizationForm: System_Text.NormalizationForm): Rewrap<this, boolean>;
|
|
223
223
|
IsWhiteSpace(this: System.ReadOnlySpan_1<System_Internal.Char>): Rewrap<this, boolean>;
|
|
224
|
-
LastIndexOf<T
|
|
224
|
+
LastIndexOf<T extends System.IEquatable_1<T>>(this: System.ReadOnlySpan_1<T>, value: T): Rewrap<this, int>;
|
|
225
225
|
LastIndexOf<T>(this: System.ReadOnlySpan_1<T>, value: T, comparer?: System_Collections_Generic.IEqualityComparer_1<T>): Rewrap<this, int>;
|
|
226
|
-
LastIndexOf<T
|
|
226
|
+
LastIndexOf<T extends System.IEquatable_1<T>>(this: System.ReadOnlySpan_1<T>, value: System.ReadOnlySpan_1<T>): Rewrap<this, int>;
|
|
227
227
|
LastIndexOf<T>(this: System.ReadOnlySpan_1<T>, value: System.ReadOnlySpan_1<T>, comparer?: System_Collections_Generic.IEqualityComparer_1<T>): Rewrap<this, int>;
|
|
228
228
|
LastIndexOf(this: System.ReadOnlySpan_1<System_Internal.Char>, value: System.ReadOnlySpan_1<System_Internal.Char>, comparisonType: System.StringComparison): Rewrap<this, int>;
|
|
229
|
-
LastIndexOf<T
|
|
230
|
-
LastIndexOf<T
|
|
231
|
-
LastIndexOfAny<T
|
|
229
|
+
LastIndexOf<T extends System.IEquatable_1<T>>(this: System.Span_1<T>, value: T): Rewrap<this, int>;
|
|
230
|
+
LastIndexOf<T extends System.IEquatable_1<T>>(this: System.Span_1<T>, value: System.ReadOnlySpan_1<T>): Rewrap<this, int>;
|
|
231
|
+
LastIndexOfAny<T extends System.IEquatable_1<T>>(this: System.ReadOnlySpan_1<T>, value0: T, value1: T): Rewrap<this, int>;
|
|
232
232
|
LastIndexOfAny<T>(this: System.ReadOnlySpan_1<T>, value0: T, value1: T, comparer?: System_Collections_Generic.IEqualityComparer_1<T>): Rewrap<this, int>;
|
|
233
|
-
LastIndexOfAny<T
|
|
233
|
+
LastIndexOfAny<T extends System.IEquatable_1<T>>(this: System.ReadOnlySpan_1<T>, value0: T, value1: T, value2: T): Rewrap<this, int>;
|
|
234
234
|
LastIndexOfAny<T>(this: System.ReadOnlySpan_1<T>, value0: T, value1: T, value2: T, comparer?: System_Collections_Generic.IEqualityComparer_1<T>): Rewrap<this, int>;
|
|
235
|
-
LastIndexOfAny<T
|
|
235
|
+
LastIndexOfAny<T extends System.IEquatable_1<T>>(this: System.ReadOnlySpan_1<T>, values: System.ReadOnlySpan_1<T>): Rewrap<this, int>;
|
|
236
236
|
LastIndexOfAny<T>(this: System.ReadOnlySpan_1<T>, values: System.ReadOnlySpan_1<T>, comparer?: System_Collections_Generic.IEqualityComparer_1<T>): Rewrap<this, int>;
|
|
237
|
-
LastIndexOfAny<T
|
|
238
|
-
LastIndexOfAny<T
|
|
239
|
-
LastIndexOfAny<T
|
|
240
|
-
LastIndexOfAny<T
|
|
241
|
-
LastIndexOfAny<T
|
|
242
|
-
LastIndexOfAnyExcept<T
|
|
237
|
+
LastIndexOfAny<T extends System.IEquatable_1<T>>(this: System.ReadOnlySpan_1<T>, values: System_Buffers.SearchValues_1<T>): Rewrap<this, int>;
|
|
238
|
+
LastIndexOfAny<T extends System.IEquatable_1<T>>(this: System.Span_1<T>, value0: T, value1: T): Rewrap<this, int>;
|
|
239
|
+
LastIndexOfAny<T extends System.IEquatable_1<T>>(this: System.Span_1<T>, value0: T, value1: T, value2: T): Rewrap<this, int>;
|
|
240
|
+
LastIndexOfAny<T extends System.IEquatable_1<T>>(this: System.Span_1<T>, values: System.ReadOnlySpan_1<T>): Rewrap<this, int>;
|
|
241
|
+
LastIndexOfAny<T extends System.IEquatable_1<T>>(this: System.Span_1<T>, values: System_Buffers.SearchValues_1<T>): Rewrap<this, int>;
|
|
242
|
+
LastIndexOfAnyExcept<T extends System.IEquatable_1<T>>(this: System.ReadOnlySpan_1<T>, value: T): Rewrap<this, int>;
|
|
243
243
|
LastIndexOfAnyExcept<T>(this: System.ReadOnlySpan_1<T>, value: T, comparer?: System_Collections_Generic.IEqualityComparer_1<T>): Rewrap<this, int>;
|
|
244
|
-
LastIndexOfAnyExcept<T
|
|
244
|
+
LastIndexOfAnyExcept<T extends System.IEquatable_1<T>>(this: System.ReadOnlySpan_1<T>, value0: T, value1: T): Rewrap<this, int>;
|
|
245
245
|
LastIndexOfAnyExcept<T>(this: System.ReadOnlySpan_1<T>, value0: T, value1: T, comparer?: System_Collections_Generic.IEqualityComparer_1<T>): Rewrap<this, int>;
|
|
246
|
-
LastIndexOfAnyExcept<T
|
|
246
|
+
LastIndexOfAnyExcept<T extends System.IEquatable_1<T>>(this: System.ReadOnlySpan_1<T>, value0: T, value1: T, value2: T): Rewrap<this, int>;
|
|
247
247
|
LastIndexOfAnyExcept<T>(this: System.ReadOnlySpan_1<T>, value0: T, value1: T, value2: T, comparer?: System_Collections_Generic.IEqualityComparer_1<T>): Rewrap<this, int>;
|
|
248
|
-
LastIndexOfAnyExcept<T
|
|
248
|
+
LastIndexOfAnyExcept<T extends System.IEquatable_1<T>>(this: System.ReadOnlySpan_1<T>, values: System.ReadOnlySpan_1<T>): Rewrap<this, int>;
|
|
249
249
|
LastIndexOfAnyExcept<T>(this: System.ReadOnlySpan_1<T>, values: System.ReadOnlySpan_1<T>, comparer?: System_Collections_Generic.IEqualityComparer_1<T>): Rewrap<this, int>;
|
|
250
|
-
LastIndexOfAnyExcept<T
|
|
251
|
-
LastIndexOfAnyExcept<T
|
|
252
|
-
LastIndexOfAnyExcept<T
|
|
253
|
-
LastIndexOfAnyExcept<T
|
|
254
|
-
LastIndexOfAnyExcept<T
|
|
255
|
-
LastIndexOfAnyExcept<T
|
|
256
|
-
LastIndexOfAnyExceptInRange<T
|
|
257
|
-
LastIndexOfAnyExceptInRange<T
|
|
258
|
-
LastIndexOfAnyInRange<T
|
|
259
|
-
LastIndexOfAnyInRange<T
|
|
250
|
+
LastIndexOfAnyExcept<T extends System.IEquatable_1<T>>(this: System.ReadOnlySpan_1<T>, values: System_Buffers.SearchValues_1<T>): Rewrap<this, int>;
|
|
251
|
+
LastIndexOfAnyExcept<T extends System.IEquatable_1<T>>(this: System.Span_1<T>, value: T): Rewrap<this, int>;
|
|
252
|
+
LastIndexOfAnyExcept<T extends System.IEquatable_1<T>>(this: System.Span_1<T>, value0: T, value1: T): Rewrap<this, int>;
|
|
253
|
+
LastIndexOfAnyExcept<T extends System.IEquatable_1<T>>(this: System.Span_1<T>, value0: T, value1: T, value2: T): Rewrap<this, int>;
|
|
254
|
+
LastIndexOfAnyExcept<T extends System.IEquatable_1<T>>(this: System.Span_1<T>, values: System.ReadOnlySpan_1<T>): Rewrap<this, int>;
|
|
255
|
+
LastIndexOfAnyExcept<T extends System.IEquatable_1<T>>(this: System.Span_1<T>, values: System_Buffers.SearchValues_1<T>): Rewrap<this, int>;
|
|
256
|
+
LastIndexOfAnyExceptInRange<T extends System.IComparable_1<T>>(this: System.ReadOnlySpan_1<T>, lowInclusive: T, highInclusive: T): Rewrap<this, int>;
|
|
257
|
+
LastIndexOfAnyExceptInRange<T extends System.IComparable_1<T>>(this: System.Span_1<T>, lowInclusive: T, highInclusive: T): Rewrap<this, int>;
|
|
258
|
+
LastIndexOfAnyInRange<T extends System.IComparable_1<T>>(this: System.ReadOnlySpan_1<T>, lowInclusive: T, highInclusive: T): Rewrap<this, int>;
|
|
259
|
+
LastIndexOfAnyInRange<T extends System.IComparable_1<T>>(this: System.Span_1<T>, lowInclusive: T, highInclusive: T): Rewrap<this, int>;
|
|
260
260
|
Normalize(this: string): Rewrap<this, string>;
|
|
261
261
|
Normalize(this: string, normalizationForm: System_Text.NormalizationForm): Rewrap<this, string>;
|
|
262
262
|
Overlaps<T>(this: System.ReadOnlySpan_1<T>, other: System.ReadOnlySpan_1<T>): Rewrap<this, boolean>;
|
|
263
263
|
Overlaps<T>(this: System.ReadOnlySpan_1<T>, other: System.ReadOnlySpan_1<T>, elementOffset: int): Rewrap<this, boolean>;
|
|
264
264
|
Overlaps<T>(this: System.Span_1<T>, other: System.ReadOnlySpan_1<T>): Rewrap<this, boolean>;
|
|
265
265
|
Overlaps<T>(this: System.Span_1<T>, other: System.ReadOnlySpan_1<T>, elementOffset: int): Rewrap<this, boolean>;
|
|
266
|
-
Replace<T
|
|
266
|
+
Replace<T extends System.IEquatable_1<T>>(this: System.ReadOnlySpan_1<T>, destination: System.Span_1<T>, oldValue: T, newValue: T): Rewrap<this, void>;
|
|
267
267
|
Replace<T>(this: System.ReadOnlySpan_1<T>, destination: System.Span_1<T>, oldValue: T, newValue: T, comparer?: System_Collections_Generic.IEqualityComparer_1<T>): Rewrap<this, void>;
|
|
268
|
-
Replace<T
|
|
268
|
+
Replace<T extends System.IEquatable_1<T>>(this: System.Span_1<T>, oldValue: T, newValue: T): Rewrap<this, void>;
|
|
269
269
|
Replace<T>(this: System.Span_1<T>, oldValue: T, newValue: T, comparer?: System_Collections_Generic.IEqualityComparer_1<T>): Rewrap<this, void>;
|
|
270
|
-
ReplaceAny<T
|
|
271
|
-
ReplaceAny<T
|
|
272
|
-
ReplaceAnyExcept<T
|
|
273
|
-
ReplaceAnyExcept<T
|
|
270
|
+
ReplaceAny<T extends System.IEquatable_1<T>>(this: System.ReadOnlySpan_1<T>, destination: System.Span_1<T>, values: System_Buffers.SearchValues_1<T>, newValue: T): Rewrap<this, void>;
|
|
271
|
+
ReplaceAny<T extends System.IEquatable_1<T>>(this: System.Span_1<T>, values: System_Buffers.SearchValues_1<T>, newValue: T): Rewrap<this, void>;
|
|
272
|
+
ReplaceAnyExcept<T extends System.IEquatable_1<T>>(this: System.ReadOnlySpan_1<T>, destination: System.Span_1<T>, values: System_Buffers.SearchValues_1<T>, newValue: T): Rewrap<this, void>;
|
|
273
|
+
ReplaceAnyExcept<T extends System.IEquatable_1<T>>(this: System.Span_1<T>, values: System_Buffers.SearchValues_1<T>, newValue: T): Rewrap<this, void>;
|
|
274
274
|
Reverse<T>(this: System.Span_1<T>): Rewrap<this, void>;
|
|
275
|
-
SequenceCompareTo<T
|
|
275
|
+
SequenceCompareTo<T extends System.IComparable_1<T>>(this: System.ReadOnlySpan_1<T>, other: System.ReadOnlySpan_1<T>): Rewrap<this, int>;
|
|
276
276
|
SequenceCompareTo<T>(this: System.ReadOnlySpan_1<T>, other: System.ReadOnlySpan_1<T>, comparer?: System_Collections_Generic.IComparer_1<T>): Rewrap<this, int>;
|
|
277
|
-
SequenceCompareTo<T
|
|
278
|
-
SequenceEqual<T
|
|
277
|
+
SequenceCompareTo<T extends System.IComparable_1<T>>(this: System.Span_1<T>, other: System.ReadOnlySpan_1<T>): Rewrap<this, int>;
|
|
278
|
+
SequenceEqual<T extends System.IEquatable_1<T>>(this: System.ReadOnlySpan_1<T>, other: System.ReadOnlySpan_1<T>): Rewrap<this, boolean>;
|
|
279
279
|
SequenceEqual<T>(this: System.ReadOnlySpan_1<T>, other: System.ReadOnlySpan_1<T>, comparer?: System_Collections_Generic.IEqualityComparer_1<T>): Rewrap<this, boolean>;
|
|
280
|
-
SequenceEqual<T
|
|
280
|
+
SequenceEqual<T extends System.IEquatable_1<T>>(this: System.Span_1<T>, other: System.ReadOnlySpan_1<T>): Rewrap<this, boolean>;
|
|
281
281
|
SequenceEqual<T>(this: System.Span_1<T>, other: System.ReadOnlySpan_1<T>, comparer?: System_Collections_Generic.IEqualityComparer_1<T>): Rewrap<this, boolean>;
|
|
282
282
|
Sort<T>(this: System.Span_1<T>): Rewrap<this, void>;
|
|
283
|
-
Sort<T, TComparer
|
|
283
|
+
Sort<T, TComparer extends System_Collections_Generic.IComparer_1<T>>(this: System.Span_1<T>, comparer: TComparer): Rewrap<this, void>;
|
|
284
284
|
Sort<T>(this: System.Span_1<T>, comparison: System.Comparison_1<T>): Rewrap<this, void>;
|
|
285
285
|
Sort<TKey, TValue>(this: System.Span_1<TKey>, items: System.Span_1<TValue>): Rewrap<this, void>;
|
|
286
|
-
Sort<TKey, TValue, TComparer
|
|
286
|
+
Sort<TKey, TValue, TComparer extends System_Collections_Generic.IComparer_1<TKey>>(this: System.Span_1<TKey>, items: System.Span_1<TValue>, comparer: TComparer): Rewrap<this, void>;
|
|
287
287
|
Sort<TKey, TValue>(this: System.Span_1<TKey>, items: System.Span_1<TValue>, comparison: System.Comparison_1<TKey>): Rewrap<this, void>;
|
|
288
|
-
Split<T
|
|
289
|
-
Split<T
|
|
288
|
+
Split<T extends System.IEquatable_1<T>>(this: System.ReadOnlySpan_1<T>, separator: T): Rewrap<this, System.MemoryExtensions_SpanSplitEnumerator_1<T>>;
|
|
289
|
+
Split<T extends System.IEquatable_1<T>>(this: System.ReadOnlySpan_1<T>, separator: System.ReadOnlySpan_1<T>): Rewrap<this, System.MemoryExtensions_SpanSplitEnumerator_1<T>>;
|
|
290
290
|
Split(this: System.ReadOnlySpan_1<System_Internal.Char>, destination: System.Span_1<System.Range>, separator: char, options?: System.StringSplitOptions): Rewrap<this, int>;
|
|
291
291
|
Split(this: System.ReadOnlySpan_1<System_Internal.Char>, destination: System.Span_1<System.Range>, separator: System.ReadOnlySpan_1<System_Internal.Char>, options?: System.StringSplitOptions): Rewrap<this, int>;
|
|
292
|
-
SplitAny<T
|
|
293
|
-
SplitAny<T
|
|
292
|
+
SplitAny<T extends System.IEquatable_1<T>>(this: System.ReadOnlySpan_1<T>, separators: System.ReadOnlySpan_1<T>): Rewrap<this, System.MemoryExtensions_SpanSplitEnumerator_1<T>>;
|
|
293
|
+
SplitAny<T extends System.IEquatable_1<T>>(this: System.ReadOnlySpan_1<T>, separators: System_Buffers.SearchValues_1<T>): Rewrap<this, System.MemoryExtensions_SpanSplitEnumerator_1<T>>;
|
|
294
294
|
SplitAny(this: System.ReadOnlySpan_1<System_Internal.Char>, destination: System.Span_1<System.Range>, separators: System.ReadOnlySpan_1<System_Internal.Char>, options?: System.StringSplitOptions): Rewrap<this, int>;
|
|
295
295
|
SplitAny(this: System.ReadOnlySpan_1<System_Internal.Char>, destination: System.Span_1<System.Range>, separators: System.ReadOnlySpan_1<System_Internal.String>, options?: System.StringSplitOptions): Rewrap<this, int>;
|
|
296
|
-
StartsWith<T
|
|
296
|
+
StartsWith<T extends System.IEquatable_1<T>>(this: System.ReadOnlySpan_1<T>, value: System.ReadOnlySpan_1<T>): Rewrap<this, boolean>;
|
|
297
297
|
StartsWith<T>(this: System.ReadOnlySpan_1<T>, value: System.ReadOnlySpan_1<T>, comparer?: System_Collections_Generic.IEqualityComparer_1<T>): Rewrap<this, boolean>;
|
|
298
|
-
StartsWith<T
|
|
298
|
+
StartsWith<T extends System.IEquatable_1<T>>(this: System.ReadOnlySpan_1<T>, value: T): Rewrap<this, boolean>;
|
|
299
299
|
StartsWith<T>(this: System.ReadOnlySpan_1<T>, value: T, comparer?: System_Collections_Generic.IEqualityComparer_1<T>): Rewrap<this, boolean>;
|
|
300
300
|
StartsWith(this: System.ReadOnlySpan_1<System_Internal.Char>, value: System.ReadOnlySpan_1<System_Internal.Char>, comparisonType: System.StringComparison): Rewrap<this, boolean>;
|
|
301
|
-
StartsWith<T
|
|
301
|
+
StartsWith<T extends System.IEquatable_1<T>>(this: System.Span_1<T>, value: System.ReadOnlySpan_1<T>): Rewrap<this, boolean>;
|
|
302
302
|
ToLower(this: System.ReadOnlySpan_1<System_Internal.Char>, destination: System.Span_1<System_Internal.Char>, culture: System_Globalization.CultureInfo): Rewrap<this, int>;
|
|
303
303
|
ToLowerInvariant(this: System.ReadOnlySpan_1<System_Internal.Char>, destination: System.Span_1<System_Internal.Char>): Rewrap<this, int>;
|
|
304
304
|
ToTuple<T1>(this: System.ValueTuple_1<T1>): Rewrap<this, System.Tuple_1<T1>>;
|
|
@@ -319,47 +319,47 @@ interface __TsonicExtMethods_System {
|
|
|
319
319
|
ToValueTuple<T1, T2, T3, T4, T5, T6>(this: System.Tuple_6<T1, T2, T3, T4, T5, T6>): Rewrap<this, System.ValueTuple_6<T1, T2, T3, T4, T5, T6>>;
|
|
320
320
|
ToValueTuple<T1, T2, T3, T4, T5, T6, T7>(this: System.Tuple_7<T1, T2, T3, T4, T5, T6, T7>): Rewrap<this, System.ValueTuple_7<T1, T2, T3, T4, T5, T6, T7>>;
|
|
321
321
|
ToValueTuple<T1, T2, T3, T4, T5, T6, T7, T8>(this: System.Tuple_8<T1, T2, T3, T4, T5, T6, T7, System.Tuple_1<T8>>): Rewrap<this, System.ValueTuple_8<T1, T2, T3, T4, T5, T6, T7, System.ValueTuple_1<T8>>>;
|
|
322
|
-
Trim<T
|
|
323
|
-
Trim<T
|
|
322
|
+
Trim<T extends System.IEquatable_1<T>>(this: System.Memory_1<T>, trimElement: T): Rewrap<this, System.Memory_1<T>>;
|
|
323
|
+
Trim<T extends System.IEquatable_1<T>>(this: System.Memory_1<T>, trimElements: System.ReadOnlySpan_1<T>): Rewrap<this, System.Memory_1<T>>;
|
|
324
324
|
Trim(this: System.Memory_1<System_Internal.Char>): Rewrap<this, System.Memory_1<System_Internal.Char>>;
|
|
325
|
-
Trim<T
|
|
326
|
-
Trim<T
|
|
325
|
+
Trim<T extends System.IEquatable_1<T>>(this: System.ReadOnlyMemory_1<T>, trimElement: T): Rewrap<this, System.ReadOnlyMemory_1<T>>;
|
|
326
|
+
Trim<T extends System.IEquatable_1<T>>(this: System.ReadOnlyMemory_1<T>, trimElements: System.ReadOnlySpan_1<T>): Rewrap<this, System.ReadOnlyMemory_1<T>>;
|
|
327
327
|
Trim(this: System.ReadOnlyMemory_1<System_Internal.Char>): Rewrap<this, System.ReadOnlyMemory_1<System_Internal.Char>>;
|
|
328
|
-
Trim<T
|
|
329
|
-
Trim<T
|
|
328
|
+
Trim<T extends System.IEquatable_1<T>>(this: System.ReadOnlySpan_1<T>, trimElement: T): Rewrap<this, System.ReadOnlySpan_1<T>>;
|
|
329
|
+
Trim<T extends System.IEquatable_1<T>>(this: System.ReadOnlySpan_1<T>, trimElements: System.ReadOnlySpan_1<T>): Rewrap<this, System.ReadOnlySpan_1<T>>;
|
|
330
330
|
Trim(this: System.ReadOnlySpan_1<System_Internal.Char>): Rewrap<this, System.ReadOnlySpan_1<System_Internal.Char>>;
|
|
331
331
|
Trim(this: System.ReadOnlySpan_1<System_Internal.Char>, trimChar: char): Rewrap<this, System.ReadOnlySpan_1<System_Internal.Char>>;
|
|
332
332
|
Trim(this: System.ReadOnlySpan_1<System_Internal.Char>, trimChars: System.ReadOnlySpan_1<System_Internal.Char>): Rewrap<this, System.ReadOnlySpan_1<System_Internal.Char>>;
|
|
333
|
-
Trim<T
|
|
334
|
-
Trim<T
|
|
333
|
+
Trim<T extends System.IEquatable_1<T>>(this: System.Span_1<T>, trimElement: T): Rewrap<this, System.Span_1<T>>;
|
|
334
|
+
Trim<T extends System.IEquatable_1<T>>(this: System.Span_1<T>, trimElements: System.ReadOnlySpan_1<T>): Rewrap<this, System.Span_1<T>>;
|
|
335
335
|
Trim(this: System.Span_1<System_Internal.Char>): Rewrap<this, System.Span_1<System_Internal.Char>>;
|
|
336
|
-
TrimEnd<T
|
|
337
|
-
TrimEnd<T
|
|
336
|
+
TrimEnd<T extends System.IEquatable_1<T>>(this: System.Memory_1<T>, trimElement: T): Rewrap<this, System.Memory_1<T>>;
|
|
337
|
+
TrimEnd<T extends System.IEquatable_1<T>>(this: System.Memory_1<T>, trimElements: System.ReadOnlySpan_1<T>): Rewrap<this, System.Memory_1<T>>;
|
|
338
338
|
TrimEnd(this: System.Memory_1<System_Internal.Char>): Rewrap<this, System.Memory_1<System_Internal.Char>>;
|
|
339
|
-
TrimEnd<T
|
|
340
|
-
TrimEnd<T
|
|
339
|
+
TrimEnd<T extends System.IEquatable_1<T>>(this: System.ReadOnlyMemory_1<T>, trimElement: T): Rewrap<this, System.ReadOnlyMemory_1<T>>;
|
|
340
|
+
TrimEnd<T extends System.IEquatable_1<T>>(this: System.ReadOnlyMemory_1<T>, trimElements: System.ReadOnlySpan_1<T>): Rewrap<this, System.ReadOnlyMemory_1<T>>;
|
|
341
341
|
TrimEnd(this: System.ReadOnlyMemory_1<System_Internal.Char>): Rewrap<this, System.ReadOnlyMemory_1<System_Internal.Char>>;
|
|
342
|
-
TrimEnd<T
|
|
343
|
-
TrimEnd<T
|
|
342
|
+
TrimEnd<T extends System.IEquatable_1<T>>(this: System.ReadOnlySpan_1<T>, trimElement: T): Rewrap<this, System.ReadOnlySpan_1<T>>;
|
|
343
|
+
TrimEnd<T extends System.IEquatable_1<T>>(this: System.ReadOnlySpan_1<T>, trimElements: System.ReadOnlySpan_1<T>): Rewrap<this, System.ReadOnlySpan_1<T>>;
|
|
344
344
|
TrimEnd(this: System.ReadOnlySpan_1<System_Internal.Char>): Rewrap<this, System.ReadOnlySpan_1<System_Internal.Char>>;
|
|
345
345
|
TrimEnd(this: System.ReadOnlySpan_1<System_Internal.Char>, trimChar: char): Rewrap<this, System.ReadOnlySpan_1<System_Internal.Char>>;
|
|
346
346
|
TrimEnd(this: System.ReadOnlySpan_1<System_Internal.Char>, trimChars: System.ReadOnlySpan_1<System_Internal.Char>): Rewrap<this, System.ReadOnlySpan_1<System_Internal.Char>>;
|
|
347
|
-
TrimEnd<T
|
|
348
|
-
TrimEnd<T
|
|
347
|
+
TrimEnd<T extends System.IEquatable_1<T>>(this: System.Span_1<T>, trimElement: T): Rewrap<this, System.Span_1<T>>;
|
|
348
|
+
TrimEnd<T extends System.IEquatable_1<T>>(this: System.Span_1<T>, trimElements: System.ReadOnlySpan_1<T>): Rewrap<this, System.Span_1<T>>;
|
|
349
349
|
TrimEnd(this: System.Span_1<System_Internal.Char>): Rewrap<this, System.Span_1<System_Internal.Char>>;
|
|
350
|
-
TrimStart<T
|
|
351
|
-
TrimStart<T
|
|
350
|
+
TrimStart<T extends System.IEquatable_1<T>>(this: System.Memory_1<T>, trimElement: T): Rewrap<this, System.Memory_1<T>>;
|
|
351
|
+
TrimStart<T extends System.IEquatable_1<T>>(this: System.Memory_1<T>, trimElements: System.ReadOnlySpan_1<T>): Rewrap<this, System.Memory_1<T>>;
|
|
352
352
|
TrimStart(this: System.Memory_1<System_Internal.Char>): Rewrap<this, System.Memory_1<System_Internal.Char>>;
|
|
353
|
-
TrimStart<T
|
|
354
|
-
TrimStart<T
|
|
353
|
+
TrimStart<T extends System.IEquatable_1<T>>(this: System.ReadOnlyMemory_1<T>, trimElement: T): Rewrap<this, System.ReadOnlyMemory_1<T>>;
|
|
354
|
+
TrimStart<T extends System.IEquatable_1<T>>(this: System.ReadOnlyMemory_1<T>, trimElements: System.ReadOnlySpan_1<T>): Rewrap<this, System.ReadOnlyMemory_1<T>>;
|
|
355
355
|
TrimStart(this: System.ReadOnlyMemory_1<System_Internal.Char>): Rewrap<this, System.ReadOnlyMemory_1<System_Internal.Char>>;
|
|
356
|
-
TrimStart<T
|
|
357
|
-
TrimStart<T
|
|
356
|
+
TrimStart<T extends System.IEquatable_1<T>>(this: System.ReadOnlySpan_1<T>, trimElement: T): Rewrap<this, System.ReadOnlySpan_1<T>>;
|
|
357
|
+
TrimStart<T extends System.IEquatable_1<T>>(this: System.ReadOnlySpan_1<T>, trimElements: System.ReadOnlySpan_1<T>): Rewrap<this, System.ReadOnlySpan_1<T>>;
|
|
358
358
|
TrimStart(this: System.ReadOnlySpan_1<System_Internal.Char>): Rewrap<this, System.ReadOnlySpan_1<System_Internal.Char>>;
|
|
359
359
|
TrimStart(this: System.ReadOnlySpan_1<System_Internal.Char>, trimChar: char): Rewrap<this, System.ReadOnlySpan_1<System_Internal.Char>>;
|
|
360
360
|
TrimStart(this: System.ReadOnlySpan_1<System_Internal.Char>, trimChars: System.ReadOnlySpan_1<System_Internal.Char>): Rewrap<this, System.ReadOnlySpan_1<System_Internal.Char>>;
|
|
361
|
-
TrimStart<T
|
|
362
|
-
TrimStart<T
|
|
361
|
+
TrimStart<T extends System.IEquatable_1<T>>(this: System.Span_1<T>, trimElement: T): Rewrap<this, System.Span_1<T>>;
|
|
362
|
+
TrimStart<T extends System.IEquatable_1<T>>(this: System.Span_1<T>, trimElements: System.ReadOnlySpan_1<T>): Rewrap<this, System.Span_1<T>>;
|
|
363
363
|
TrimStart(this: System.Span_1<System_Internal.Char>): Rewrap<this, System.Span_1<System_Internal.Char>>;
|
|
364
364
|
TryNormalize(this: System.ReadOnlySpan_1<System_Internal.Char>, destination: System.Span_1<System_Internal.Char>, charsWritten: int, normalizationForm?: System_Text.NormalizationForm): Rewrap<this, boolean>;
|
|
365
365
|
TryWrite(this: System.Span_1<System_Internal.Char>, handler: System.MemoryExtensions_TryWriteInterpolatedStringHandler, charsWritten: int): Rewrap<this, boolean>;
|
|
@@ -509,15 +509,15 @@ export type ExtensionMethods_System_Collections_Immutable<TShape> =
|
|
|
509
509
|
|
|
510
510
|
// Extension method table for namespace: System.Data
|
|
511
511
|
interface __TsonicExtMethods_System_Data {
|
|
512
|
-
AsDataView<T>(this: System_Data.EnumerableRowCollection_1<T>): Rewrap<this, System_Data.DataView>;
|
|
512
|
+
AsDataView<T extends System_Data.DataRow>(this: System_Data.EnumerableRowCollection_1<T>): Rewrap<this, System_Data.DataView>;
|
|
513
513
|
AsDataView(this: System_Data.DataTable): Rewrap<this, System_Data.DataView>;
|
|
514
|
-
AsEnumerable<TRow>(this: System_Data.TypedTableBase_1<TRow>): Rewrap<this, System_Data.EnumerableRowCollection_1<TRow>>;
|
|
514
|
+
AsEnumerable<TRow extends System_Data.DataRow>(this: System_Data.TypedTableBase_1<TRow>): Rewrap<this, System_Data.EnumerableRowCollection_1<TRow>>;
|
|
515
515
|
AsEnumerable(this: System_Data.DataTable): Rewrap<this, System_Data.EnumerableRowCollection_1<System_Data.DataRow>>;
|
|
516
516
|
Cast<TResult>(this: System_Data.EnumerableRowCollection): Rewrap<this, System_Data.EnumerableRowCollection_1<TResult>>;
|
|
517
|
-
CopyToDataTable<T>(this: System_Collections_Generic.IEnumerable_1<T>): Rewrap<this, System_Data.DataTable>;
|
|
518
|
-
CopyToDataTable<T>(this: System_Collections_Generic.IEnumerable_1<T>, table: System_Data.DataTable, options: System_Data.LoadOption): Rewrap<this, void>;
|
|
519
|
-
CopyToDataTable<T>(this: System_Collections_Generic.IEnumerable_1<T>, table: System_Data.DataTable, options: System_Data.LoadOption, errorHandler: System_Data.FillErrorEventHandler): Rewrap<this, void>;
|
|
520
|
-
ElementAtOrDefault<TRow>(this: System_Data.TypedTableBase_1<TRow>, index: int): Rewrap<this, TRow | undefined>;
|
|
517
|
+
CopyToDataTable<T extends System_Data.DataRow>(this: System_Collections_Generic.IEnumerable_1<T>): Rewrap<this, System_Data.DataTable>;
|
|
518
|
+
CopyToDataTable<T extends System_Data.DataRow>(this: System_Collections_Generic.IEnumerable_1<T>, table: System_Data.DataTable, options: System_Data.LoadOption): Rewrap<this, void>;
|
|
519
|
+
CopyToDataTable<T extends System_Data.DataRow>(this: System_Collections_Generic.IEnumerable_1<T>, table: System_Data.DataTable, options: System_Data.LoadOption, errorHandler: System_Data.FillErrorEventHandler): Rewrap<this, void>;
|
|
520
|
+
ElementAtOrDefault<TRow extends System_Data.DataRow>(this: System_Data.TypedTableBase_1<TRow>, index: int): Rewrap<this, TRow | undefined>;
|
|
521
521
|
Field<T>(this: System_Data.DataRow, columnName: string): Rewrap<this, T | undefined>;
|
|
522
522
|
Field<T>(this: System_Data.DataRow, column: System_Data.DataColumn): Rewrap<this, T | undefined>;
|
|
523
523
|
Field<T>(this: System_Data.DataRow, columnIndex: int): Rewrap<this, T | undefined>;
|
|
@@ -552,14 +552,14 @@ interface __TsonicExtMethods_System_Data {
|
|
|
552
552
|
IsDBNullAsync(this: System_Data_Common.DbDataReader, name: string, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<System_Internal.Boolean>>;
|
|
553
553
|
OrderBy<TRow, TKey>(this: System_Data.EnumerableRowCollection_1<TRow>, keySelector: System.Func_2<TRow, TKey>): Rewrap<this, System_Data.OrderedEnumerableRowCollection_1<TRow>>;
|
|
554
554
|
OrderBy<TRow, TKey>(this: System_Data.EnumerableRowCollection_1<TRow>, keySelector: System.Func_2<TRow, TKey>, comparer: System_Collections_Generic.IComparer_1<TKey>): Rewrap<this, System_Data.OrderedEnumerableRowCollection_1<TRow>>;
|
|
555
|
-
OrderBy<TRow, TKey>(this: System_Data.TypedTableBase_1<TRow>, keySelector: System.Func_2<TRow, TKey>): Rewrap<this, System_Data.OrderedEnumerableRowCollection_1<TRow>>;
|
|
556
|
-
OrderBy<TRow, TKey>(this: System_Data.TypedTableBase_1<TRow>, keySelector: System.Func_2<TRow, TKey>, comparer: System_Collections_Generic.IComparer_1<TKey>): Rewrap<this, System_Data.OrderedEnumerableRowCollection_1<TRow>>;
|
|
555
|
+
OrderBy<TRow extends System_Data.DataRow, TKey>(this: System_Data.TypedTableBase_1<TRow>, keySelector: System.Func_2<TRow, TKey>): Rewrap<this, System_Data.OrderedEnumerableRowCollection_1<TRow>>;
|
|
556
|
+
OrderBy<TRow extends System_Data.DataRow, TKey>(this: System_Data.TypedTableBase_1<TRow>, keySelector: System.Func_2<TRow, TKey>, comparer: System_Collections_Generic.IComparer_1<TKey>): Rewrap<this, System_Data.OrderedEnumerableRowCollection_1<TRow>>;
|
|
557
557
|
OrderByDescending<TRow, TKey>(this: System_Data.EnumerableRowCollection_1<TRow>, keySelector: System.Func_2<TRow, TKey>): Rewrap<this, System_Data.OrderedEnumerableRowCollection_1<TRow>>;
|
|
558
558
|
OrderByDescending<TRow, TKey>(this: System_Data.EnumerableRowCollection_1<TRow>, keySelector: System.Func_2<TRow, TKey>, comparer: System_Collections_Generic.IComparer_1<TKey>): Rewrap<this, System_Data.OrderedEnumerableRowCollection_1<TRow>>;
|
|
559
|
-
OrderByDescending<TRow, TKey>(this: System_Data.TypedTableBase_1<TRow>, keySelector: System.Func_2<TRow, TKey>): Rewrap<this, System_Data.OrderedEnumerableRowCollection_1<TRow>>;
|
|
560
|
-
OrderByDescending<TRow, TKey>(this: System_Data.TypedTableBase_1<TRow>, keySelector: System.Func_2<TRow, TKey>, comparer: System_Collections_Generic.IComparer_1<TKey>): Rewrap<this, System_Data.OrderedEnumerableRowCollection_1<TRow>>;
|
|
559
|
+
OrderByDescending<TRow extends System_Data.DataRow, TKey>(this: System_Data.TypedTableBase_1<TRow>, keySelector: System.Func_2<TRow, TKey>): Rewrap<this, System_Data.OrderedEnumerableRowCollection_1<TRow>>;
|
|
560
|
+
OrderByDescending<TRow extends System_Data.DataRow, TKey>(this: System_Data.TypedTableBase_1<TRow>, keySelector: System.Func_2<TRow, TKey>, comparer: System_Collections_Generic.IComparer_1<TKey>): Rewrap<this, System_Data.OrderedEnumerableRowCollection_1<TRow>>;
|
|
561
561
|
Select<TRow, S>(this: System_Data.EnumerableRowCollection_1<TRow>, selector: System.Func_2<TRow, S>): Rewrap<this, System_Data.EnumerableRowCollection_1<S>>;
|
|
562
|
-
Select<TRow, S>(this: System_Data.TypedTableBase_1<TRow>, selector: System.Func_2<TRow, S>): Rewrap<this, System_Data.EnumerableRowCollection_1<S>>;
|
|
562
|
+
Select<TRow extends System_Data.DataRow, S>(this: System_Data.TypedTableBase_1<TRow>, selector: System.Func_2<TRow, S>): Rewrap<this, System_Data.EnumerableRowCollection_1<S>>;
|
|
563
563
|
SetField<T>(this: System_Data.DataRow, columnIndex: int, value: T): Rewrap<this, void>;
|
|
564
564
|
SetField<T>(this: System_Data.DataRow, columnName: string, value: T): Rewrap<this, void>;
|
|
565
565
|
SetField<T>(this: System_Data.DataRow, column: System_Data.DataColumn, value: T): Rewrap<this, void>;
|
|
@@ -568,7 +568,7 @@ interface __TsonicExtMethods_System_Data {
|
|
|
568
568
|
ThenByDescending<TRow, TKey>(this: System_Data.OrderedEnumerableRowCollection_1<TRow>, keySelector: System.Func_2<TRow, TKey>): Rewrap<this, System_Data.OrderedEnumerableRowCollection_1<TRow>>;
|
|
569
569
|
ThenByDescending<TRow, TKey>(this: System_Data.OrderedEnumerableRowCollection_1<TRow>, keySelector: System.Func_2<TRow, TKey>, comparer: System_Collections_Generic.IComparer_1<TKey>): Rewrap<this, System_Data.OrderedEnumerableRowCollection_1<TRow>>;
|
|
570
570
|
Where<TRow>(this: System_Data.EnumerableRowCollection_1<TRow>, predicate: System.Func_2<TRow, System_Internal.Boolean>): Rewrap<this, System_Data.EnumerableRowCollection_1<TRow>>;
|
|
571
|
-
Where<TRow>(this: System_Data.TypedTableBase_1<TRow>, predicate: System.Func_2<TRow, System_Internal.Boolean>): Rewrap<this, System_Data.EnumerableRowCollection_1<TRow>>;
|
|
571
|
+
Where<TRow extends System_Data.DataRow>(this: System_Data.TypedTableBase_1<TRow>, predicate: System.Func_2<TRow, System_Internal.Boolean>): Rewrap<this, System_Data.EnumerableRowCollection_1<TRow>>;
|
|
572
572
|
}
|
|
573
573
|
|
|
574
574
|
// Generic helper type for extension methods in namespace: System.Data
|
|
@@ -1270,9 +1270,9 @@ interface __TsonicExtMethods_System_Linq {
|
|
|
1270
1270
|
SelectMany<TSource, TResult>(this: System_Collections_Generic.IEnumerable_1<TSource>, selector: System.Func_3<TSource, System_Internal.Int32, System_Collections_Generic.IEnumerable_1<TResult>>): Rewrap<this, System_Collections_Generic.IEnumerable_1<TResult>>;
|
|
1271
1271
|
SelectMany<TSource, TCollection, TResult>(this: System_Collections_Generic.IEnumerable_1<TSource>, collectionSelector: System.Func_3<TSource, System_Internal.Int32, System_Collections_Generic.IEnumerable_1<TCollection>>, resultSelector: System.Func_3<TSource, TCollection, TResult>): Rewrap<this, System_Collections_Generic.IEnumerable_1<TResult>>;
|
|
1272
1272
|
SelectMany<TSource, TCollection, TResult>(this: System_Collections_Generic.IEnumerable_1<TSource>, collectionSelector: System.Func_2<TSource, System_Collections_Generic.IEnumerable_1<TCollection>>, resultSelector: System.Func_3<TSource, TCollection, TResult>): Rewrap<this, System_Collections_Generic.IEnumerable_1<TResult>>;
|
|
1273
|
-
SequenceEqual<TDerived, TBase>(this: System_Collections_Immutable.ImmutableArray_1<TBase>, items: System_Collections_Immutable.ImmutableArray_1<TDerived>, comparer?: System_Collections_Generic.IEqualityComparer_1<TBase>): Rewrap<this, boolean>;
|
|
1274
|
-
SequenceEqual<TDerived, TBase>(this: System_Collections_Immutable.ImmutableArray_1<TBase>, items: System_Collections_Generic.IEnumerable_1<TDerived>, comparer?: System_Collections_Generic.IEqualityComparer_1<TBase>): Rewrap<this, boolean>;
|
|
1275
|
-
SequenceEqual<TDerived, TBase>(this: System_Collections_Immutable.ImmutableArray_1<TBase>, items: System_Collections_Immutable.ImmutableArray_1<TDerived>, predicate: System.Func_3<TBase, TBase, System_Internal.Boolean>): Rewrap<this, boolean>;
|
|
1273
|
+
SequenceEqual<TDerived extends TBase, TBase>(this: System_Collections_Immutable.ImmutableArray_1<TBase>, items: System_Collections_Immutable.ImmutableArray_1<TDerived>, comparer?: System_Collections_Generic.IEqualityComparer_1<TBase>): Rewrap<this, boolean>;
|
|
1274
|
+
SequenceEqual<TDerived extends TBase, TBase>(this: System_Collections_Immutable.ImmutableArray_1<TBase>, items: System_Collections_Generic.IEnumerable_1<TDerived>, comparer?: System_Collections_Generic.IEqualityComparer_1<TBase>): Rewrap<this, boolean>;
|
|
1275
|
+
SequenceEqual<TDerived extends TBase, TBase>(this: System_Collections_Immutable.ImmutableArray_1<TBase>, items: System_Collections_Immutable.ImmutableArray_1<TDerived>, predicate: System.Func_3<TBase, TBase, System_Internal.Boolean>): Rewrap<this, boolean>;
|
|
1276
1276
|
SequenceEqual<TSource>(this: System_Linq.IQueryable_1<TSource>, source2: System_Collections_Generic.IEnumerable_1<TSource>): Rewrap<this, boolean>;
|
|
1277
1277
|
SequenceEqual<TSource>(this: System_Linq.IQueryable_1<TSource>, source2: System_Collections_Generic.IEnumerable_1<TSource>, comparer: System_Collections_Generic.IEqualityComparer_1<TSource>): Rewrap<this, boolean>;
|
|
1278
1278
|
SequenceEqual<TSource>(this: System_Linq.ParallelQuery_1<TSource>, second: System_Linq.ParallelQuery_1<TSource>): Rewrap<this, boolean>;
|
|
@@ -1711,35 +1711,35 @@ interface __TsonicExtMethods_System_Reflection {
|
|
|
1711
1711
|
GetConstructors(this: System.Type): Rewrap<this, System_Reflection.ConstructorInfo[]>;
|
|
1712
1712
|
GetConstructors(this: System.Type, bindingAttr: System_Reflection.BindingFlags): Rewrap<this, System_Reflection.ConstructorInfo[]>;
|
|
1713
1713
|
GetCustomAttribute(this: System_Reflection.Assembly, attributeType: System.Type): Rewrap<this, System.Attribute | undefined>;
|
|
1714
|
-
GetCustomAttribute<T>(this: System_Reflection.Assembly): Rewrap<this, T | undefined>;
|
|
1714
|
+
GetCustomAttribute<T extends System.Attribute>(this: System_Reflection.Assembly): Rewrap<this, T | undefined>;
|
|
1715
1715
|
GetCustomAttribute(this: System_Reflection.Module, attributeType: System.Type): Rewrap<this, System.Attribute | undefined>;
|
|
1716
|
-
GetCustomAttribute<T>(this: System_Reflection.Module): Rewrap<this, T | undefined>;
|
|
1716
|
+
GetCustomAttribute<T extends System.Attribute>(this: System_Reflection.Module): Rewrap<this, T | undefined>;
|
|
1717
1717
|
GetCustomAttribute(this: System_Reflection.ParameterInfo, attributeType: System.Type): Rewrap<this, System.Attribute | undefined>;
|
|
1718
|
-
GetCustomAttribute<T>(this: System_Reflection.ParameterInfo): Rewrap<this, T | undefined>;
|
|
1718
|
+
GetCustomAttribute<T extends System.Attribute>(this: System_Reflection.ParameterInfo): Rewrap<this, T | undefined>;
|
|
1719
1719
|
GetCustomAttribute(this: System_Reflection.ParameterInfo, attributeType: System.Type, inherit: boolean): Rewrap<this, System.Attribute | undefined>;
|
|
1720
|
-
GetCustomAttribute<T>(this: System_Reflection.ParameterInfo, inherit: boolean): Rewrap<this, T | undefined>;
|
|
1720
|
+
GetCustomAttribute<T extends System.Attribute>(this: System_Reflection.ParameterInfo, inherit: boolean): Rewrap<this, T | undefined>;
|
|
1721
1721
|
GetCustomAttribute(this: System_Reflection.MemberInfo, attributeType: System.Type): Rewrap<this, System.Attribute | undefined>;
|
|
1722
|
-
GetCustomAttribute<T>(this: System_Reflection.MemberInfo): Rewrap<this, T | undefined>;
|
|
1722
|
+
GetCustomAttribute<T extends System.Attribute>(this: System_Reflection.MemberInfo): Rewrap<this, T | undefined>;
|
|
1723
1723
|
GetCustomAttribute(this: System_Reflection.MemberInfo, attributeType: System.Type, inherit: boolean): Rewrap<this, System.Attribute | undefined>;
|
|
1724
|
-
GetCustomAttribute<T>(this: System_Reflection.MemberInfo, inherit: boolean): Rewrap<this, T | undefined>;
|
|
1724
|
+
GetCustomAttribute<T extends System.Attribute>(this: System_Reflection.MemberInfo, inherit: boolean): Rewrap<this, T | undefined>;
|
|
1725
1725
|
GetCustomAttributes(this: System_Reflection.Assembly): Rewrap<this, System_Collections_Generic.IEnumerable_1<System.Attribute>>;
|
|
1726
1726
|
GetCustomAttributes(this: System_Reflection.Assembly, attributeType: System.Type): Rewrap<this, System_Collections_Generic.IEnumerable_1<System.Attribute>>;
|
|
1727
|
-
GetCustomAttributes<T>(this: System_Reflection.Assembly): Rewrap<this, System_Collections_Generic.IEnumerable_1<T>>;
|
|
1727
|
+
GetCustomAttributes<T extends System.Attribute>(this: System_Reflection.Assembly): Rewrap<this, System_Collections_Generic.IEnumerable_1<T>>;
|
|
1728
1728
|
GetCustomAttributes(this: System_Reflection.Module): Rewrap<this, System_Collections_Generic.IEnumerable_1<System.Attribute>>;
|
|
1729
1729
|
GetCustomAttributes(this: System_Reflection.Module, attributeType: System.Type): Rewrap<this, System_Collections_Generic.IEnumerable_1<System.Attribute>>;
|
|
1730
|
-
GetCustomAttributes<T>(this: System_Reflection.Module): Rewrap<this, System_Collections_Generic.IEnumerable_1<T>>;
|
|
1730
|
+
GetCustomAttributes<T extends System.Attribute>(this: System_Reflection.Module): Rewrap<this, System_Collections_Generic.IEnumerable_1<T>>;
|
|
1731
1731
|
GetCustomAttributes(this: System_Reflection.ParameterInfo): Rewrap<this, System_Collections_Generic.IEnumerable_1<System.Attribute>>;
|
|
1732
1732
|
GetCustomAttributes(this: System_Reflection.ParameterInfo, inherit: boolean): Rewrap<this, System_Collections_Generic.IEnumerable_1<System.Attribute>>;
|
|
1733
1733
|
GetCustomAttributes(this: System_Reflection.ParameterInfo, attributeType: System.Type): Rewrap<this, System_Collections_Generic.IEnumerable_1<System.Attribute>>;
|
|
1734
|
-
GetCustomAttributes<T>(this: System_Reflection.ParameterInfo): Rewrap<this, System_Collections_Generic.IEnumerable_1<T>>;
|
|
1734
|
+
GetCustomAttributes<T extends System.Attribute>(this: System_Reflection.ParameterInfo): Rewrap<this, System_Collections_Generic.IEnumerable_1<T>>;
|
|
1735
1735
|
GetCustomAttributes(this: System_Reflection.ParameterInfo, attributeType: System.Type, inherit: boolean): Rewrap<this, System_Collections_Generic.IEnumerable_1<System.Attribute>>;
|
|
1736
|
-
GetCustomAttributes<T>(this: System_Reflection.ParameterInfo, inherit: boolean): Rewrap<this, System_Collections_Generic.IEnumerable_1<T>>;
|
|
1736
|
+
GetCustomAttributes<T extends System.Attribute>(this: System_Reflection.ParameterInfo, inherit: boolean): Rewrap<this, System_Collections_Generic.IEnumerable_1<T>>;
|
|
1737
1737
|
GetCustomAttributes(this: System_Reflection.MemberInfo): Rewrap<this, System_Collections_Generic.IEnumerable_1<System.Attribute>>;
|
|
1738
1738
|
GetCustomAttributes(this: System_Reflection.MemberInfo, inherit: boolean): Rewrap<this, System_Collections_Generic.IEnumerable_1<System.Attribute>>;
|
|
1739
1739
|
GetCustomAttributes(this: System_Reflection.MemberInfo, attributeType: System.Type): Rewrap<this, System_Collections_Generic.IEnumerable_1<System.Attribute>>;
|
|
1740
|
-
GetCustomAttributes<T>(this: System_Reflection.MemberInfo): Rewrap<this, System_Collections_Generic.IEnumerable_1<T>>;
|
|
1740
|
+
GetCustomAttributes<T extends System.Attribute>(this: System_Reflection.MemberInfo): Rewrap<this, System_Collections_Generic.IEnumerable_1<T>>;
|
|
1741
1741
|
GetCustomAttributes(this: System_Reflection.MemberInfo, attributeType: System.Type, inherit: boolean): Rewrap<this, System_Collections_Generic.IEnumerable_1<System.Attribute>>;
|
|
1742
|
-
GetCustomAttributes<T>(this: System_Reflection.MemberInfo, inherit: boolean): Rewrap<this, System_Collections_Generic.IEnumerable_1<T>>;
|
|
1742
|
+
GetCustomAttributes<T extends System.Attribute>(this: System_Reflection.MemberInfo, inherit: boolean): Rewrap<this, System_Collections_Generic.IEnumerable_1<T>>;
|
|
1743
1743
|
GetDefaultMembers(this: System.Type): Rewrap<this, System_Reflection.MemberInfo[]>;
|
|
1744
1744
|
GetEvent(this: System.Type, name: string): Rewrap<this, System_Reflection.EventInfo | undefined>;
|
|
1745
1745
|
GetEvent(this: System.Type, name: string, bindingAttr: System_Reflection.BindingFlags): Rewrap<this, System_Reflection.EventInfo | undefined>;
|
|
@@ -2274,24 +2274,24 @@ export type ExtensionMethods_System_Threading_Tasks_Dataflow<TShape> =
|
|
|
2274
2274
|
|
|
2275
2275
|
// Extension method table for namespace: System.Xml.Linq
|
|
2276
2276
|
interface __TsonicExtMethods_System_Xml_Linq {
|
|
2277
|
-
Ancestors<T>(this: System_Collections_Generic.IEnumerable_1<T>): Rewrap<this, System_Collections_Generic.IEnumerable_1<System_Xml_Linq.XElement>>;
|
|
2278
|
-
Ancestors<T>(this: System_Collections_Generic.IEnumerable_1<T>, name: System_Xml_Linq.XName): Rewrap<this, System_Collections_Generic.IEnumerable_1<System_Xml_Linq.XElement>>;
|
|
2277
|
+
Ancestors<T extends System_Xml_Linq.XNode>(this: System_Collections_Generic.IEnumerable_1<T>): Rewrap<this, System_Collections_Generic.IEnumerable_1<System_Xml_Linq.XElement>>;
|
|
2278
|
+
Ancestors<T extends System_Xml_Linq.XNode>(this: System_Collections_Generic.IEnumerable_1<T>, name: System_Xml_Linq.XName): Rewrap<this, System_Collections_Generic.IEnumerable_1<System_Xml_Linq.XElement>>;
|
|
2279
2279
|
AncestorsAndSelf(this: System_Collections_Generic.IEnumerable_1<System_Xml_Linq.XElement>): Rewrap<this, System_Collections_Generic.IEnumerable_1<System_Xml_Linq.XElement>>;
|
|
2280
2280
|
AncestorsAndSelf(this: System_Collections_Generic.IEnumerable_1<System_Xml_Linq.XElement>, name: System_Xml_Linq.XName): Rewrap<this, System_Collections_Generic.IEnumerable_1<System_Xml_Linq.XElement>>;
|
|
2281
2281
|
Attributes(this: System_Collections_Generic.IEnumerable_1<System_Xml_Linq.XElement>): Rewrap<this, System_Collections_Generic.IEnumerable_1<System_Xml_Linq.XAttribute>>;
|
|
2282
2282
|
Attributes(this: System_Collections_Generic.IEnumerable_1<System_Xml_Linq.XElement>, name: System_Xml_Linq.XName): Rewrap<this, System_Collections_Generic.IEnumerable_1<System_Xml_Linq.XAttribute>>;
|
|
2283
|
-
DescendantNodes<T>(this: System_Collections_Generic.IEnumerable_1<T>): Rewrap<this, System_Collections_Generic.IEnumerable_1<System_Xml_Linq.XNode>>;
|
|
2283
|
+
DescendantNodes<T extends System_Xml_Linq.XContainer>(this: System_Collections_Generic.IEnumerable_1<T>): Rewrap<this, System_Collections_Generic.IEnumerable_1<System_Xml_Linq.XNode>>;
|
|
2284
2284
|
DescendantNodesAndSelf(this: System_Collections_Generic.IEnumerable_1<System_Xml_Linq.XElement>): Rewrap<this, System_Collections_Generic.IEnumerable_1<System_Xml_Linq.XNode>>;
|
|
2285
|
-
Descendants<T>(this: System_Collections_Generic.IEnumerable_1<T>): Rewrap<this, System_Collections_Generic.IEnumerable_1<System_Xml_Linq.XElement>>;
|
|
2286
|
-
Descendants<T>(this: System_Collections_Generic.IEnumerable_1<T>, name: System_Xml_Linq.XName): Rewrap<this, System_Collections_Generic.IEnumerable_1<System_Xml_Linq.XElement>>;
|
|
2285
|
+
Descendants<T extends System_Xml_Linq.XContainer>(this: System_Collections_Generic.IEnumerable_1<T>): Rewrap<this, System_Collections_Generic.IEnumerable_1<System_Xml_Linq.XElement>>;
|
|
2286
|
+
Descendants<T extends System_Xml_Linq.XContainer>(this: System_Collections_Generic.IEnumerable_1<T>, name: System_Xml_Linq.XName): Rewrap<this, System_Collections_Generic.IEnumerable_1<System_Xml_Linq.XElement>>;
|
|
2287
2287
|
DescendantsAndSelf(this: System_Collections_Generic.IEnumerable_1<System_Xml_Linq.XElement>): Rewrap<this, System_Collections_Generic.IEnumerable_1<System_Xml_Linq.XElement>>;
|
|
2288
2288
|
DescendantsAndSelf(this: System_Collections_Generic.IEnumerable_1<System_Xml_Linq.XElement>, name: System_Xml_Linq.XName): Rewrap<this, System_Collections_Generic.IEnumerable_1<System_Xml_Linq.XElement>>;
|
|
2289
|
-
Elements<T>(this: System_Collections_Generic.IEnumerable_1<T>): Rewrap<this, System_Collections_Generic.IEnumerable_1<System_Xml_Linq.XElement>>;
|
|
2290
|
-
Elements<T>(this: System_Collections_Generic.IEnumerable_1<T>, name: System_Xml_Linq.XName): Rewrap<this, System_Collections_Generic.IEnumerable_1<System_Xml_Linq.XElement>>;
|
|
2291
|
-
InDocumentOrder<T>(this: System_Collections_Generic.IEnumerable_1<T>): Rewrap<this, System_Collections_Generic.IEnumerable_1<T>>;
|
|
2292
|
-
Nodes<T>(this: System_Collections_Generic.IEnumerable_1<T>): Rewrap<this, System_Collections_Generic.IEnumerable_1<System_Xml_Linq.XNode>>;
|
|
2289
|
+
Elements<T extends System_Xml_Linq.XContainer>(this: System_Collections_Generic.IEnumerable_1<T>): Rewrap<this, System_Collections_Generic.IEnumerable_1<System_Xml_Linq.XElement>>;
|
|
2290
|
+
Elements<T extends System_Xml_Linq.XContainer>(this: System_Collections_Generic.IEnumerable_1<T>, name: System_Xml_Linq.XName): Rewrap<this, System_Collections_Generic.IEnumerable_1<System_Xml_Linq.XElement>>;
|
|
2291
|
+
InDocumentOrder<T extends System_Xml_Linq.XNode>(this: System_Collections_Generic.IEnumerable_1<T>): Rewrap<this, System_Collections_Generic.IEnumerable_1<T>>;
|
|
2292
|
+
Nodes<T extends System_Xml_Linq.XContainer>(this: System_Collections_Generic.IEnumerable_1<T>): Rewrap<this, System_Collections_Generic.IEnumerable_1<System_Xml_Linq.XNode>>;
|
|
2293
2293
|
Remove(this: System_Collections_Generic.IEnumerable_1<System_Xml_Linq.XAttribute>): Rewrap<this, void>;
|
|
2294
|
-
Remove<T>(this: System_Collections_Generic.IEnumerable_1<T>): Rewrap<this, void>;
|
|
2294
|
+
Remove<T extends System_Xml_Linq.XNode>(this: System_Collections_Generic.IEnumerable_1<T>): Rewrap<this, void>;
|
|
2295
2295
|
}
|
|
2296
2296
|
|
|
2297
2297
|
// Generic helper type for extension methods in namespace: System.Xml.Linq
|