@tsonic/dotnet 10.0.27 → 10.0.32
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/System.Data.Common/internal/index.d.ts +28 -14
- package/System.IO/internal/index.d.ts +2 -1
- package/System.Net.Http.Headers/internal/index.d.ts +48 -24
- package/System.Net.ServerSentEvents/internal/index.d.ts +2 -1
- package/System.Net.Sockets/internal/index.d.ts +2 -1
- package/System.Security.Cryptography/internal/index.d.ts +4 -2
- package/System.Security.Cryptography.X509Certificates/internal/index.d.ts +10 -5
- package/System.Text.Json/internal/index.d.ts +4 -2
- package/System.Text.Json.Serialization.Metadata/internal/index.d.ts +14 -7
- package/__internal/extensions/index.d.ts +518 -8
- package/package.json +2 -2
|
@@ -392,7 +392,8 @@ export type DbBatchCommandCollection = DbBatchCommandCollection$instance & __DbB
|
|
|
392
392
|
export interface DbColumn$instance {
|
|
393
393
|
readonly __tsonic_type_System_Data_Common_DbColumn: never;
|
|
394
394
|
|
|
395
|
-
AllowDBNull: Nullable_1<System_Internal.Boolean>;
|
|
395
|
+
get AllowDBNull(): Nullable_1<System_Internal.Boolean>;
|
|
396
|
+
set AllowDBNull(value: Nullable_1<System_Internal.Boolean> | boolean);
|
|
396
397
|
get BaseCatalogName(): string | undefined;
|
|
397
398
|
set BaseCatalogName(value: string | undefined);
|
|
398
399
|
get BaseColumnName(): string | undefined;
|
|
@@ -404,23 +405,36 @@ export interface DbColumn$instance {
|
|
|
404
405
|
get BaseTableName(): string | undefined;
|
|
405
406
|
set BaseTableName(value: string | undefined);
|
|
406
407
|
ColumnName: string;
|
|
407
|
-
ColumnOrdinal: Nullable_1<System_Internal.Int32>;
|
|
408
|
-
|
|
408
|
+
get ColumnOrdinal(): Nullable_1<System_Internal.Int32>;
|
|
409
|
+
set ColumnOrdinal(value: Nullable_1<System_Internal.Int32> | int);
|
|
410
|
+
get ColumnSize(): Nullable_1<System_Internal.Int32>;
|
|
411
|
+
set ColumnSize(value: Nullable_1<System_Internal.Int32> | int);
|
|
409
412
|
get DataType(): Type | undefined;
|
|
410
413
|
set DataType(value: Type | undefined);
|
|
411
414
|
get DataTypeName(): string | undefined;
|
|
412
415
|
set DataTypeName(value: string | undefined);
|
|
413
|
-
IsAliased: Nullable_1<System_Internal.Boolean>;
|
|
414
|
-
|
|
415
|
-
|
|
416
|
-
|
|
417
|
-
|
|
418
|
-
|
|
419
|
-
|
|
420
|
-
|
|
421
|
-
|
|
422
|
-
|
|
423
|
-
|
|
416
|
+
get IsAliased(): Nullable_1<System_Internal.Boolean>;
|
|
417
|
+
set IsAliased(value: Nullable_1<System_Internal.Boolean> | boolean);
|
|
418
|
+
get IsAutoIncrement(): Nullable_1<System_Internal.Boolean>;
|
|
419
|
+
set IsAutoIncrement(value: Nullable_1<System_Internal.Boolean> | boolean);
|
|
420
|
+
get IsExpression(): Nullable_1<System_Internal.Boolean>;
|
|
421
|
+
set IsExpression(value: Nullable_1<System_Internal.Boolean> | boolean);
|
|
422
|
+
get IsHidden(): Nullable_1<System_Internal.Boolean>;
|
|
423
|
+
set IsHidden(value: Nullable_1<System_Internal.Boolean> | boolean);
|
|
424
|
+
get IsIdentity(): Nullable_1<System_Internal.Boolean>;
|
|
425
|
+
set IsIdentity(value: Nullable_1<System_Internal.Boolean> | boolean);
|
|
426
|
+
get IsKey(): Nullable_1<System_Internal.Boolean>;
|
|
427
|
+
set IsKey(value: Nullable_1<System_Internal.Boolean> | boolean);
|
|
428
|
+
get IsLong(): Nullable_1<System_Internal.Boolean>;
|
|
429
|
+
set IsLong(value: Nullable_1<System_Internal.Boolean> | boolean);
|
|
430
|
+
get IsReadOnly(): Nullable_1<System_Internal.Boolean>;
|
|
431
|
+
set IsReadOnly(value: Nullable_1<System_Internal.Boolean> | boolean);
|
|
432
|
+
get IsUnique(): Nullable_1<System_Internal.Boolean>;
|
|
433
|
+
set IsUnique(value: Nullable_1<System_Internal.Boolean> | boolean);
|
|
434
|
+
get NumericPrecision(): Nullable_1<System_Internal.Int32>;
|
|
435
|
+
set NumericPrecision(value: Nullable_1<System_Internal.Int32> | int);
|
|
436
|
+
get NumericScale(): Nullable_1<System_Internal.Int32>;
|
|
437
|
+
set NumericScale(value: Nullable_1<System_Internal.Int32> | int);
|
|
424
438
|
get UdtAssemblyQualifiedName(): string | undefined;
|
|
425
439
|
set UdtAssemblyQualifiedName(value: string | undefined);
|
|
426
440
|
}
|
|
@@ -737,7 +737,8 @@ export interface FileStreamOptions$instance {
|
|
|
737
737
|
Options: FileOptions;
|
|
738
738
|
PreallocationSize: long;
|
|
739
739
|
Share: FileShare;
|
|
740
|
-
UnixCreateMode: Nullable_1<UnixFileMode>;
|
|
740
|
+
get UnixCreateMode(): Nullable_1<UnixFileMode>;
|
|
741
|
+
set UnixCreateMode(value: Nullable_1<UnixFileMode> | UnixFileMode);
|
|
741
742
|
}
|
|
742
743
|
|
|
743
744
|
|
|
@@ -161,10 +161,13 @@ export interface CacheControlHeaderValue$instance extends System_Internal.IClone
|
|
|
161
161
|
readonly __tsonic_iface_System_ICloneable: never;
|
|
162
162
|
|
|
163
163
|
readonly Extensions: ICollection_1<NameValueHeaderValue>;
|
|
164
|
-
MaxAge: Nullable_1<TimeSpan>;
|
|
164
|
+
get MaxAge(): Nullable_1<TimeSpan>;
|
|
165
|
+
set MaxAge(value: Nullable_1<TimeSpan> | TimeSpan);
|
|
165
166
|
MaxStale: boolean;
|
|
166
|
-
MaxStaleLimit: Nullable_1<TimeSpan>;
|
|
167
|
-
|
|
167
|
+
get MaxStaleLimit(): Nullable_1<TimeSpan>;
|
|
168
|
+
set MaxStaleLimit(value: Nullable_1<TimeSpan> | TimeSpan);
|
|
169
|
+
get MinFresh(): Nullable_1<TimeSpan>;
|
|
170
|
+
set MinFresh(value: Nullable_1<TimeSpan> | TimeSpan);
|
|
168
171
|
MustRevalidate: boolean;
|
|
169
172
|
NoCache: boolean;
|
|
170
173
|
readonly NoCacheHeaders: ICollection_1<System_Internal.String>;
|
|
@@ -175,7 +178,8 @@ export interface CacheControlHeaderValue$instance extends System_Internal.IClone
|
|
|
175
178
|
readonly PrivateHeaders: ICollection_1<System_Internal.String>;
|
|
176
179
|
ProxyRevalidate: boolean;
|
|
177
180
|
Public: boolean;
|
|
178
|
-
SharedMaxAge: Nullable_1<TimeSpan>;
|
|
181
|
+
get SharedMaxAge(): Nullable_1<TimeSpan>;
|
|
182
|
+
set SharedMaxAge(value: Nullable_1<TimeSpan> | TimeSpan);
|
|
179
183
|
Equals(obj: unknown): boolean;
|
|
180
184
|
GetHashCode(): int;
|
|
181
185
|
ToString(): string;
|
|
@@ -201,18 +205,22 @@ export interface ContentDispositionHeaderValue$instance extends System_Internal.
|
|
|
201
205
|
|
|
202
206
|
readonly __tsonic_iface_System_ICloneable: never;
|
|
203
207
|
|
|
204
|
-
CreationDate: Nullable_1<DateTimeOffset>;
|
|
208
|
+
get CreationDate(): Nullable_1<DateTimeOffset>;
|
|
209
|
+
set CreationDate(value: Nullable_1<DateTimeOffset> | DateTimeOffset);
|
|
205
210
|
DispositionType: string;
|
|
206
211
|
get FileName(): string | undefined;
|
|
207
212
|
set FileName(value: string | undefined);
|
|
208
213
|
get FileNameStar(): string | undefined;
|
|
209
214
|
set FileNameStar(value: string | undefined);
|
|
210
|
-
ModificationDate: Nullable_1<DateTimeOffset>;
|
|
215
|
+
get ModificationDate(): Nullable_1<DateTimeOffset>;
|
|
216
|
+
set ModificationDate(value: Nullable_1<DateTimeOffset> | DateTimeOffset);
|
|
211
217
|
get Name(): string | undefined;
|
|
212
218
|
set Name(value: string | undefined);
|
|
213
219
|
readonly Parameters: ICollection_1<NameValueHeaderValue>;
|
|
214
|
-
ReadDate: Nullable_1<DateTimeOffset>;
|
|
215
|
-
|
|
220
|
+
get ReadDate(): Nullable_1<DateTimeOffset>;
|
|
221
|
+
set ReadDate(value: Nullable_1<DateTimeOffset> | DateTimeOffset);
|
|
222
|
+
get Size(): Nullable_1<System_Internal.Int64>;
|
|
223
|
+
set Size(value: Nullable_1<System_Internal.Int64> | long);
|
|
216
224
|
Equals(obj: unknown): boolean;
|
|
217
225
|
GetHashCode(): int;
|
|
218
226
|
ToString(): string;
|
|
@@ -306,7 +314,8 @@ export interface HttpContentHeaders$instance extends HttpHeaders$instance {
|
|
|
306
314
|
set ContentDisposition(value: ContentDispositionHeaderValue | undefined);
|
|
307
315
|
readonly ContentEncoding: ICollection_1<System_Internal.String>;
|
|
308
316
|
readonly ContentLanguage: ICollection_1<System_Internal.String>;
|
|
309
|
-
ContentLength: Nullable_1<System_Internal.Int64>;
|
|
317
|
+
get ContentLength(): Nullable_1<System_Internal.Int64>;
|
|
318
|
+
set ContentLength(value: Nullable_1<System_Internal.Int64> | long);
|
|
310
319
|
get ContentLocation(): Uri | undefined;
|
|
311
320
|
set ContentLocation(value: Uri | undefined);
|
|
312
321
|
get ContentMD5(): byte[] | undefined;
|
|
@@ -315,8 +324,10 @@ export interface HttpContentHeaders$instance extends HttpHeaders$instance {
|
|
|
315
324
|
set ContentRange(value: ContentRangeHeaderValue | undefined);
|
|
316
325
|
get ContentType(): MediaTypeHeaderValue | undefined;
|
|
317
326
|
set ContentType(value: MediaTypeHeaderValue | undefined);
|
|
318
|
-
Expires: Nullable_1<DateTimeOffset>;
|
|
319
|
-
|
|
327
|
+
get Expires(): Nullable_1<DateTimeOffset>;
|
|
328
|
+
set Expires(value: Nullable_1<DateTimeOffset> | DateTimeOffset);
|
|
329
|
+
get LastModified(): Nullable_1<DateTimeOffset>;
|
|
330
|
+
set LastModified(value: Nullable_1<DateTimeOffset> | DateTimeOffset);
|
|
320
331
|
}
|
|
321
332
|
|
|
322
333
|
|
|
@@ -414,21 +425,27 @@ export interface HttpRequestHeaders$instance extends HttpHeaders$instance {
|
|
|
414
425
|
get CacheControl(): CacheControlHeaderValue | undefined;
|
|
415
426
|
set CacheControl(value: CacheControlHeaderValue | undefined);
|
|
416
427
|
readonly Connection: HttpHeaderValueCollection_1<System_Internal.String>;
|
|
417
|
-
ConnectionClose: Nullable_1<System_Internal.Boolean>;
|
|
418
|
-
|
|
428
|
+
get ConnectionClose(): Nullable_1<System_Internal.Boolean>;
|
|
429
|
+
set ConnectionClose(value: Nullable_1<System_Internal.Boolean> | boolean);
|
|
430
|
+
get Date(): Nullable_1<DateTimeOffset>;
|
|
431
|
+
set Date(value: Nullable_1<DateTimeOffset> | DateTimeOffset);
|
|
419
432
|
readonly Expect: HttpHeaderValueCollection_1<NameValueWithParametersHeaderValue>;
|
|
420
|
-
ExpectContinue: Nullable_1<System_Internal.Boolean>;
|
|
433
|
+
get ExpectContinue(): Nullable_1<System_Internal.Boolean>;
|
|
434
|
+
set ExpectContinue(value: Nullable_1<System_Internal.Boolean> | boolean);
|
|
421
435
|
get From(): string | undefined;
|
|
422
436
|
set From(value: string | undefined);
|
|
423
437
|
get Host(): string | undefined;
|
|
424
438
|
set Host(value: string | undefined);
|
|
425
439
|
readonly IfMatch: HttpHeaderValueCollection_1<EntityTagHeaderValue>;
|
|
426
|
-
IfModifiedSince: Nullable_1<DateTimeOffset>;
|
|
440
|
+
get IfModifiedSince(): Nullable_1<DateTimeOffset>;
|
|
441
|
+
set IfModifiedSince(value: Nullable_1<DateTimeOffset> | DateTimeOffset);
|
|
427
442
|
readonly IfNoneMatch: HttpHeaderValueCollection_1<EntityTagHeaderValue>;
|
|
428
443
|
get IfRange(): RangeConditionHeaderValue | undefined;
|
|
429
444
|
set IfRange(value: RangeConditionHeaderValue | undefined);
|
|
430
|
-
IfUnmodifiedSince: Nullable_1<DateTimeOffset>;
|
|
431
|
-
|
|
445
|
+
get IfUnmodifiedSince(): Nullable_1<DateTimeOffset>;
|
|
446
|
+
set IfUnmodifiedSince(value: Nullable_1<DateTimeOffset> | DateTimeOffset);
|
|
447
|
+
get MaxForwards(): Nullable_1<System_Internal.Int32>;
|
|
448
|
+
set MaxForwards(value: Nullable_1<System_Internal.Int32> | int);
|
|
432
449
|
readonly Pragma: HttpHeaderValueCollection_1<NameValueHeaderValue>;
|
|
433
450
|
get Protocol(): string | undefined;
|
|
434
451
|
set Protocol(value: string | undefined);
|
|
@@ -441,7 +458,8 @@ export interface HttpRequestHeaders$instance extends HttpHeaders$instance {
|
|
|
441
458
|
readonly TE: HttpHeaderValueCollection_1<TransferCodingWithQualityHeaderValue>;
|
|
442
459
|
readonly Trailer: HttpHeaderValueCollection_1<System_Internal.String>;
|
|
443
460
|
readonly TransferEncoding: HttpHeaderValueCollection_1<TransferCodingHeaderValue>;
|
|
444
|
-
TransferEncodingChunked: Nullable_1<System_Internal.Boolean>;
|
|
461
|
+
get TransferEncodingChunked(): Nullable_1<System_Internal.Boolean>;
|
|
462
|
+
set TransferEncodingChunked(value: Nullable_1<System_Internal.Boolean> | boolean);
|
|
445
463
|
readonly Upgrade: HttpHeaderValueCollection_1<ProductHeaderValue>;
|
|
446
464
|
readonly UserAgent: HttpHeaderValueCollection_1<ProductInfoHeaderValue>;
|
|
447
465
|
readonly Via: HttpHeaderValueCollection_1<ViaHeaderValue>;
|
|
@@ -468,12 +486,15 @@ export interface HttpResponseHeaders$instance extends HttpHeaders$instance {
|
|
|
468
486
|
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
469
487
|
|
|
470
488
|
readonly AcceptRanges: HttpHeaderValueCollection_1<System_Internal.String>;
|
|
471
|
-
Age: Nullable_1<TimeSpan>;
|
|
489
|
+
get Age(): Nullable_1<TimeSpan>;
|
|
490
|
+
set Age(value: Nullable_1<TimeSpan> | TimeSpan);
|
|
472
491
|
get CacheControl(): CacheControlHeaderValue | undefined;
|
|
473
492
|
set CacheControl(value: CacheControlHeaderValue | undefined);
|
|
474
493
|
readonly Connection: HttpHeaderValueCollection_1<System_Internal.String>;
|
|
475
|
-
ConnectionClose: Nullable_1<System_Internal.Boolean>;
|
|
476
|
-
|
|
494
|
+
get ConnectionClose(): Nullable_1<System_Internal.Boolean>;
|
|
495
|
+
set ConnectionClose(value: Nullable_1<System_Internal.Boolean> | boolean);
|
|
496
|
+
get Date(): Nullable_1<DateTimeOffset>;
|
|
497
|
+
set Date(value: Nullable_1<DateTimeOffset> | DateTimeOffset);
|
|
477
498
|
get ETag(): EntityTagHeaderValue | undefined;
|
|
478
499
|
set ETag(value: EntityTagHeaderValue | undefined);
|
|
479
500
|
get Location(): Uri | undefined;
|
|
@@ -485,7 +506,8 @@ export interface HttpResponseHeaders$instance extends HttpHeaders$instance {
|
|
|
485
506
|
readonly Server: HttpHeaderValueCollection_1<ProductInfoHeaderValue>;
|
|
486
507
|
readonly Trailer: HttpHeaderValueCollection_1<System_Internal.String>;
|
|
487
508
|
readonly TransferEncoding: HttpHeaderValueCollection_1<TransferCodingHeaderValue>;
|
|
488
|
-
TransferEncodingChunked: Nullable_1<System_Internal.Boolean>;
|
|
509
|
+
get TransferEncodingChunked(): Nullable_1<System_Internal.Boolean>;
|
|
510
|
+
set TransferEncodingChunked(value: Nullable_1<System_Internal.Boolean> | boolean);
|
|
489
511
|
readonly Upgrade: HttpHeaderValueCollection_1<ProductHeaderValue>;
|
|
490
512
|
readonly Vary: HttpHeaderValueCollection_1<System_Internal.String>;
|
|
491
513
|
readonly Via: HttpHeaderValueCollection_1<ViaHeaderValue>;
|
|
@@ -542,7 +564,8 @@ export interface MediaTypeWithQualityHeaderValue$instance extends MediaTypeHeade
|
|
|
542
564
|
|
|
543
565
|
readonly __tsonic_iface_System_ICloneable: never;
|
|
544
566
|
|
|
545
|
-
Quality: Nullable_1<System_Internal.Double>;
|
|
567
|
+
get Quality(): Nullable_1<System_Internal.Double>;
|
|
568
|
+
set Quality(value: Nullable_1<System_Internal.Double> | double);
|
|
546
569
|
}
|
|
547
570
|
|
|
548
571
|
|
|
@@ -840,7 +863,8 @@ export interface TransferCodingWithQualityHeaderValue$instance extends TransferC
|
|
|
840
863
|
|
|
841
864
|
readonly __tsonic_iface_System_ICloneable: never;
|
|
842
865
|
|
|
843
|
-
Quality: Nullable_1<System_Internal.Double>;
|
|
866
|
+
get Quality(): Nullable_1<System_Internal.Double>;
|
|
867
|
+
set Quality(value: Nullable_1<System_Internal.Double> | double);
|
|
844
868
|
}
|
|
845
869
|
|
|
846
870
|
|
|
@@ -27,7 +27,8 @@ export interface SseItem_1$instance<T> {
|
|
|
27
27
|
get EventId(): string | undefined;
|
|
28
28
|
set EventId(value: string | undefined);
|
|
29
29
|
readonly EventType: string;
|
|
30
|
-
ReconnectionInterval: Nullable_1<TimeSpan>;
|
|
30
|
+
get ReconnectionInterval(): Nullable_1<TimeSpan>;
|
|
31
|
+
set ReconnectionInterval(value: Nullable_1<TimeSpan> | TimeSpan);
|
|
31
32
|
}
|
|
32
33
|
|
|
33
34
|
|
|
@@ -610,7 +610,8 @@ export interface SendPacketsElement$instance {
|
|
|
610
610
|
set FilePath(value: string | undefined);
|
|
611
611
|
get FileStream(): FileStream | undefined;
|
|
612
612
|
set FileStream(value: FileStream | undefined);
|
|
613
|
-
MemoryBuffer: Nullable_1<ReadOnlyMemory_1<System_Internal.Byte>>;
|
|
613
|
+
get MemoryBuffer(): Nullable_1<ReadOnlyMemory_1<System_Internal.Byte>>;
|
|
614
|
+
set MemoryBuffer(value: Nullable_1<ReadOnlyMemory_1<System_Internal.Byte>> | ReadOnlyMemory_1<System_Internal.Byte>);
|
|
614
615
|
readonly Offset: int;
|
|
615
616
|
OffsetLong: long;
|
|
616
617
|
}
|
|
@@ -1031,9 +1031,11 @@ export type CngKeyBlobFormat = CngKeyBlobFormat$instance & __CngKeyBlobFormat$vi
|
|
|
1031
1031
|
export interface CngKeyCreationParameters$instance {
|
|
1032
1032
|
readonly __tsonic_type_System_Security_Cryptography_CngKeyCreationParameters: never;
|
|
1033
1033
|
|
|
1034
|
-
ExportPolicy: Nullable_1<CngExportPolicies>;
|
|
1034
|
+
get ExportPolicy(): Nullable_1<CngExportPolicies>;
|
|
1035
|
+
set ExportPolicy(value: Nullable_1<CngExportPolicies> | CngExportPolicies);
|
|
1035
1036
|
KeyCreationOptions: CngKeyCreationOptions;
|
|
1036
|
-
KeyUsage: Nullable_1<CngKeyUsages>;
|
|
1037
|
+
get KeyUsage(): Nullable_1<CngKeyUsages>;
|
|
1038
|
+
set KeyUsage(value: Nullable_1<CngKeyUsages> | CngKeyUsages);
|
|
1037
1039
|
readonly Parameters: CngPropertyCollection;
|
|
1038
1040
|
ParentWindowHandle: nint;
|
|
1039
1041
|
Provider: CngProvider;
|
|
@@ -340,16 +340,21 @@ export interface Pkcs12LoaderLimits$instance {
|
|
|
340
340
|
AllowDuplicateAttributes: boolean;
|
|
341
341
|
IgnoreEncryptedAuthSafes: boolean;
|
|
342
342
|
IgnorePrivateKeys: boolean;
|
|
343
|
-
IndividualKdfIterationLimit: Nullable_1<System_Internal.Int32>;
|
|
343
|
+
get IndividualKdfIterationLimit(): Nullable_1<System_Internal.Int32>;
|
|
344
|
+
set IndividualKdfIterationLimit(value: Nullable_1<System_Internal.Int32> | int);
|
|
344
345
|
readonly IsReadOnly: boolean;
|
|
345
|
-
MacIterationLimit: Nullable_1<System_Internal.Int32>;
|
|
346
|
-
|
|
347
|
-
|
|
346
|
+
get MacIterationLimit(): Nullable_1<System_Internal.Int32>;
|
|
347
|
+
set MacIterationLimit(value: Nullable_1<System_Internal.Int32> | int);
|
|
348
|
+
get MaxCertificates(): Nullable_1<System_Internal.Int32>;
|
|
349
|
+
set MaxCertificates(value: Nullable_1<System_Internal.Int32> | int);
|
|
350
|
+
get MaxKeys(): Nullable_1<System_Internal.Int32>;
|
|
351
|
+
set MaxKeys(value: Nullable_1<System_Internal.Int32> | int);
|
|
348
352
|
PreserveCertificateAlias: boolean;
|
|
349
353
|
PreserveKeyName: boolean;
|
|
350
354
|
PreserveStorageProvider: boolean;
|
|
351
355
|
PreserveUnknownAttributes: boolean;
|
|
352
|
-
TotalKdfIterationLimit: Nullable_1<System_Internal.Int32>;
|
|
356
|
+
get TotalKdfIterationLimit(): Nullable_1<System_Internal.Int32>;
|
|
357
|
+
set TotalKdfIterationLimit(value: Nullable_1<System_Internal.Int32> | int);
|
|
353
358
|
MakeReadOnly(): void;
|
|
354
359
|
}
|
|
355
360
|
|
|
@@ -427,8 +427,10 @@ export interface JsonException$instance extends Exception {
|
|
|
427
427
|
|
|
428
428
|
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
429
429
|
|
|
430
|
-
BytePositionInLine: Nullable_1<System_Internal.Int64>;
|
|
431
|
-
|
|
430
|
+
get BytePositionInLine(): Nullable_1<System_Internal.Int64>;
|
|
431
|
+
set BytePositionInLine(value: Nullable_1<System_Internal.Int64> | long);
|
|
432
|
+
get LineNumber(): Nullable_1<System_Internal.Int64>;
|
|
433
|
+
set LineNumber(value: Nullable_1<System_Internal.Int64> | long);
|
|
432
434
|
readonly Message: string;
|
|
433
435
|
get Path(): string | undefined;
|
|
434
436
|
set Path(value: string | undefined);
|
|
@@ -195,8 +195,10 @@ export interface JsonPropertyInfo$instance {
|
|
|
195
195
|
IsRequired: boolean;
|
|
196
196
|
IsSetNullable: boolean;
|
|
197
197
|
Name: string;
|
|
198
|
-
NumberHandling: Nullable_1<JsonNumberHandling>;
|
|
199
|
-
|
|
198
|
+
get NumberHandling(): Nullable_1<JsonNumberHandling>;
|
|
199
|
+
set NumberHandling(value: Nullable_1<JsonNumberHandling> | JsonNumberHandling);
|
|
200
|
+
get ObjectCreationHandling(): Nullable_1<JsonObjectCreationHandling>;
|
|
201
|
+
set ObjectCreationHandling(value: Nullable_1<JsonObjectCreationHandling> | JsonObjectCreationHandling);
|
|
200
202
|
readonly Options: JsonSerializerOptions;
|
|
201
203
|
Order: int;
|
|
202
204
|
readonly PropertyType: Type;
|
|
@@ -224,14 +226,16 @@ export interface JsonPropertyInfoValues_1$instance<T> {
|
|
|
224
226
|
get Getter(): Func_2<unknown, T | undefined> | undefined;
|
|
225
227
|
set Getter(value: Func_2<unknown, T | undefined> | undefined);
|
|
226
228
|
HasJsonInclude: boolean;
|
|
227
|
-
IgnoreCondition: Nullable_1<JsonIgnoreCondition>;
|
|
229
|
+
get IgnoreCondition(): Nullable_1<JsonIgnoreCondition>;
|
|
230
|
+
set IgnoreCondition(value: Nullable_1<JsonIgnoreCondition> | JsonIgnoreCondition);
|
|
228
231
|
IsExtensionData: boolean;
|
|
229
232
|
IsProperty: boolean;
|
|
230
233
|
IsPublic: boolean;
|
|
231
234
|
IsVirtual: boolean;
|
|
232
235
|
get JsonPropertyName(): string | undefined;
|
|
233
236
|
set JsonPropertyName(value: string | undefined);
|
|
234
|
-
NumberHandling: Nullable_1<JsonNumberHandling>;
|
|
237
|
+
get NumberHandling(): Nullable_1<JsonNumberHandling>;
|
|
238
|
+
set NumberHandling(value: Nullable_1<JsonNumberHandling> | JsonNumberHandling);
|
|
235
239
|
PropertyName: string;
|
|
236
240
|
PropertyTypeInfo: JsonTypeInfo;
|
|
237
241
|
get Setter(): Action_2<unknown, T | undefined> | undefined;
|
|
@@ -258,7 +262,8 @@ export interface JsonTypeInfo$instance {
|
|
|
258
262
|
IsReadOnly: boolean;
|
|
259
263
|
readonly KeyType: Type | undefined;
|
|
260
264
|
readonly Kind: JsonTypeInfoKind;
|
|
261
|
-
NumberHandling: Nullable_1<JsonNumberHandling>;
|
|
265
|
+
get NumberHandling(): Nullable_1<JsonNumberHandling>;
|
|
266
|
+
set NumberHandling(value: Nullable_1<JsonNumberHandling> | JsonNumberHandling);
|
|
262
267
|
get OnDeserialized(): Action_1<unknown> | undefined;
|
|
263
268
|
set OnDeserialized(value: Action_1<unknown> | undefined);
|
|
264
269
|
get OnDeserializing(): Action_1<unknown> | undefined;
|
|
@@ -272,10 +277,12 @@ export interface JsonTypeInfo$instance {
|
|
|
272
277
|
set OriginatingResolver(value: IJsonTypeInfoResolver | undefined);
|
|
273
278
|
get PolymorphismOptions(): JsonPolymorphismOptions | undefined;
|
|
274
279
|
set PolymorphismOptions(value: JsonPolymorphismOptions | undefined);
|
|
275
|
-
PreferredPropertyObjectCreationHandling: Nullable_1<JsonObjectCreationHandling>;
|
|
280
|
+
get PreferredPropertyObjectCreationHandling(): Nullable_1<JsonObjectCreationHandling>;
|
|
281
|
+
set PreferredPropertyObjectCreationHandling(value: Nullable_1<JsonObjectCreationHandling> | JsonObjectCreationHandling);
|
|
276
282
|
readonly Properties: IList_1<JsonPropertyInfo>;
|
|
277
283
|
readonly Type: Type;
|
|
278
|
-
UnmappedMemberHandling: Nullable_1<JsonUnmappedMemberHandling>;
|
|
284
|
+
get UnmappedMemberHandling(): Nullable_1<JsonUnmappedMemberHandling>;
|
|
285
|
+
set UnmappedMemberHandling(value: Nullable_1<JsonUnmappedMemberHandling> | JsonUnmappedMemberHandling);
|
|
279
286
|
CreateJsonPropertyInfo(propertyType: Type, name: string): JsonPropertyInfo;
|
|
280
287
|
MakeReadOnly(): void;
|
|
281
288
|
}
|
|
@@ -523,6 +523,25 @@ export interface __Ext_System_Collections_Immutable_ImmutableArray_1<T> {
|
|
|
523
523
|
}
|
|
524
524
|
|
|
525
525
|
export interface __Ext_System_Collections_Immutable_ImmutableArray_1_Builder<T> {
|
|
526
|
+
ToImmutableDictionary<TKey, TValue>(keySelector: System.Func_2<T, TKey>, elementSelector: System.Func_2<T, TValue>, keyComparer: System_Collections_Generic.IEqualityComparer_1<TKey>, valueComparer: System_Collections_Generic.IEqualityComparer_1<TValue>): Rewrap<this, System_Collections_Immutable.ImmutableDictionary_2<TKey, TValue>>;
|
|
527
|
+
ToImmutableDictionary<TKey, TValue>(keySelector: System.Func_2<T, TKey>, elementSelector: System.Func_2<T, TValue>, keyComparer: System_Collections_Generic.IEqualityComparer_1<TKey>): Rewrap<this, System_Collections_Immutable.ImmutableDictionary_2<TKey, TValue>>;
|
|
528
|
+
ToImmutableDictionary<TKey>(keySelector: System.Func_2<T, TKey>): Rewrap<this, System_Collections_Immutable.ImmutableDictionary_2<TKey, T>>;
|
|
529
|
+
ToImmutableDictionary<TKey>(keySelector: System.Func_2<T, TKey>, keyComparer: System_Collections_Generic.IEqualityComparer_1<TKey>): Rewrap<this, System_Collections_Immutable.ImmutableDictionary_2<TKey, T>>;
|
|
530
|
+
ToImmutableDictionary<TKey, TValue>(keySelector: System.Func_2<T, TKey>, elementSelector: System.Func_2<T, TValue>): Rewrap<this, System_Collections_Immutable.ImmutableDictionary_2<TKey, TValue>>;
|
|
531
|
+
ToImmutableDictionary<TKey, TValue>(keyComparer: System_Collections_Generic.IEqualityComparer_1<TKey>, valueComparer: System_Collections_Generic.IEqualityComparer_1<TValue>): Rewrap<this, System_Collections_Immutable.ImmutableDictionary_2<TKey, TValue>>;
|
|
532
|
+
ToImmutableDictionary<TKey, TValue>(keyComparer: System_Collections_Generic.IEqualityComparer_1<TKey>): Rewrap<this, System_Collections_Immutable.ImmutableDictionary_2<TKey, TValue>>;
|
|
533
|
+
ToImmutableDictionary<TKey, TValue>(): Rewrap<this, System_Collections_Immutable.ImmutableDictionary_2<TKey, TValue>>;
|
|
534
|
+
ToImmutableHashSet(equalityComparer: System_Collections_Generic.IEqualityComparer_1<T>): Rewrap<this, System_Collections_Immutable.ImmutableHashSet_1<T>>;
|
|
535
|
+
ToImmutableHashSet(): Rewrap<this, System_Collections_Immutable.ImmutableHashSet_1<T>>;
|
|
536
|
+
ToImmutableList(): Rewrap<this, System_Collections_Immutable.ImmutableList_1<T>>;
|
|
537
|
+
ToImmutableSortedDictionary<TKey, TValue>(keySelector: System.Func_2<T, TKey>, elementSelector: System.Func_2<T, TValue>, keyComparer: System_Collections_Generic.IComparer_1<TKey>, valueComparer: System_Collections_Generic.IEqualityComparer_1<TValue>): Rewrap<this, System_Collections_Immutable.ImmutableSortedDictionary_2<TKey, TValue>>;
|
|
538
|
+
ToImmutableSortedDictionary<TKey, TValue>(keySelector: System.Func_2<T, TKey>, elementSelector: System.Func_2<T, TValue>, keyComparer: System_Collections_Generic.IComparer_1<TKey>): Rewrap<this, System_Collections_Immutable.ImmutableSortedDictionary_2<TKey, TValue>>;
|
|
539
|
+
ToImmutableSortedDictionary<TKey, TValue>(keySelector: System.Func_2<T, TKey>, elementSelector: System.Func_2<T, TValue>): Rewrap<this, System_Collections_Immutable.ImmutableSortedDictionary_2<TKey, TValue>>;
|
|
540
|
+
ToImmutableSortedDictionary<TKey, TValue>(keyComparer: System_Collections_Generic.IComparer_1<TKey>, valueComparer: System_Collections_Generic.IEqualityComparer_1<TValue>): Rewrap<this, System_Collections_Immutable.ImmutableSortedDictionary_2<TKey, TValue>>;
|
|
541
|
+
ToImmutableSortedDictionary<TKey, TValue>(keyComparer: System_Collections_Generic.IComparer_1<TKey>): Rewrap<this, System_Collections_Immutable.ImmutableSortedDictionary_2<TKey, TValue>>;
|
|
542
|
+
ToImmutableSortedDictionary<TKey, TValue>(): Rewrap<this, System_Collections_Immutable.ImmutableSortedDictionary_2<TKey, TValue>>;
|
|
543
|
+
ToImmutableSortedSet(comparer: System_Collections_Generic.IComparer_1<T>): Rewrap<this, System_Collections_Immutable.ImmutableSortedSet_1<T>>;
|
|
544
|
+
ToImmutableSortedSet(): Rewrap<this, System_Collections_Immutable.ImmutableSortedSet_1<T>>;
|
|
526
545
|
ToImmutableArray(): Rewrap<this, System_Collections_Immutable.ImmutableArray_1<T>>;
|
|
527
546
|
}
|
|
528
547
|
|
|
@@ -531,10 +550,47 @@ export interface __Ext_System_Collections_Immutable_ImmutableDictionary_2_Builde
|
|
|
531
550
|
}
|
|
532
551
|
|
|
533
552
|
export interface __Ext_System_Collections_Immutable_ImmutableHashSet_1_Builder<T> {
|
|
553
|
+
ToImmutableArray(): Rewrap<this, System_Collections_Immutable.ImmutableArray_1<T>>;
|
|
554
|
+
ToImmutableDictionary<TKey, TValue>(keySelector: System.Func_2<T, TKey>, elementSelector: System.Func_2<T, TValue>, keyComparer: System_Collections_Generic.IEqualityComparer_1<TKey>, valueComparer: System_Collections_Generic.IEqualityComparer_1<TValue>): Rewrap<this, System_Collections_Immutable.ImmutableDictionary_2<TKey, TValue>>;
|
|
555
|
+
ToImmutableDictionary<TKey, TValue>(keySelector: System.Func_2<T, TKey>, elementSelector: System.Func_2<T, TValue>, keyComparer: System_Collections_Generic.IEqualityComparer_1<TKey>): Rewrap<this, System_Collections_Immutable.ImmutableDictionary_2<TKey, TValue>>;
|
|
556
|
+
ToImmutableDictionary<TKey>(keySelector: System.Func_2<T, TKey>): Rewrap<this, System_Collections_Immutable.ImmutableDictionary_2<TKey, T>>;
|
|
557
|
+
ToImmutableDictionary<TKey>(keySelector: System.Func_2<T, TKey>, keyComparer: System_Collections_Generic.IEqualityComparer_1<TKey>): Rewrap<this, System_Collections_Immutable.ImmutableDictionary_2<TKey, T>>;
|
|
558
|
+
ToImmutableDictionary<TKey, TValue>(keySelector: System.Func_2<T, TKey>, elementSelector: System.Func_2<T, TValue>): Rewrap<this, System_Collections_Immutable.ImmutableDictionary_2<TKey, TValue>>;
|
|
559
|
+
ToImmutableDictionary<TKey, TValue>(keyComparer: System_Collections_Generic.IEqualityComparer_1<TKey>, valueComparer: System_Collections_Generic.IEqualityComparer_1<TValue>): Rewrap<this, System_Collections_Immutable.ImmutableDictionary_2<TKey, TValue>>;
|
|
560
|
+
ToImmutableDictionary<TKey, TValue>(keyComparer: System_Collections_Generic.IEqualityComparer_1<TKey>): Rewrap<this, System_Collections_Immutable.ImmutableDictionary_2<TKey, TValue>>;
|
|
561
|
+
ToImmutableDictionary<TKey, TValue>(): Rewrap<this, System_Collections_Immutable.ImmutableDictionary_2<TKey, TValue>>;
|
|
562
|
+
ToImmutableList(): Rewrap<this, System_Collections_Immutable.ImmutableList_1<T>>;
|
|
563
|
+
ToImmutableSortedDictionary<TKey, TValue>(keySelector: System.Func_2<T, TKey>, elementSelector: System.Func_2<T, TValue>, keyComparer: System_Collections_Generic.IComparer_1<TKey>, valueComparer: System_Collections_Generic.IEqualityComparer_1<TValue>): Rewrap<this, System_Collections_Immutable.ImmutableSortedDictionary_2<TKey, TValue>>;
|
|
564
|
+
ToImmutableSortedDictionary<TKey, TValue>(keySelector: System.Func_2<T, TKey>, elementSelector: System.Func_2<T, TValue>, keyComparer: System_Collections_Generic.IComparer_1<TKey>): Rewrap<this, System_Collections_Immutable.ImmutableSortedDictionary_2<TKey, TValue>>;
|
|
565
|
+
ToImmutableSortedDictionary<TKey, TValue>(keySelector: System.Func_2<T, TKey>, elementSelector: System.Func_2<T, TValue>): Rewrap<this, System_Collections_Immutable.ImmutableSortedDictionary_2<TKey, TValue>>;
|
|
566
|
+
ToImmutableSortedDictionary<TKey, TValue>(keyComparer: System_Collections_Generic.IComparer_1<TKey>, valueComparer: System_Collections_Generic.IEqualityComparer_1<TValue>): Rewrap<this, System_Collections_Immutable.ImmutableSortedDictionary_2<TKey, TValue>>;
|
|
567
|
+
ToImmutableSortedDictionary<TKey, TValue>(keyComparer: System_Collections_Generic.IComparer_1<TKey>): Rewrap<this, System_Collections_Immutable.ImmutableSortedDictionary_2<TKey, TValue>>;
|
|
568
|
+
ToImmutableSortedDictionary<TKey, TValue>(): Rewrap<this, System_Collections_Immutable.ImmutableSortedDictionary_2<TKey, TValue>>;
|
|
569
|
+
ToImmutableSortedSet(comparer: System_Collections_Generic.IComparer_1<T>): Rewrap<this, System_Collections_Immutable.ImmutableSortedSet_1<T>>;
|
|
570
|
+
ToImmutableSortedSet(): Rewrap<this, System_Collections_Immutable.ImmutableSortedSet_1<T>>;
|
|
534
571
|
ToImmutableHashSet(): Rewrap<this, System_Collections_Immutable.ImmutableHashSet_1<T>>;
|
|
535
572
|
}
|
|
536
573
|
|
|
537
574
|
export interface __Ext_System_Collections_Immutable_ImmutableList_1_Builder<T> {
|
|
575
|
+
ToImmutableArray(): Rewrap<this, System_Collections_Immutable.ImmutableArray_1<T>>;
|
|
576
|
+
ToImmutableDictionary<TKey, TValue>(keySelector: System.Func_2<T, TKey>, elementSelector: System.Func_2<T, TValue>, keyComparer: System_Collections_Generic.IEqualityComparer_1<TKey>, valueComparer: System_Collections_Generic.IEqualityComparer_1<TValue>): Rewrap<this, System_Collections_Immutable.ImmutableDictionary_2<TKey, TValue>>;
|
|
577
|
+
ToImmutableDictionary<TKey, TValue>(keySelector: System.Func_2<T, TKey>, elementSelector: System.Func_2<T, TValue>, keyComparer: System_Collections_Generic.IEqualityComparer_1<TKey>): Rewrap<this, System_Collections_Immutable.ImmutableDictionary_2<TKey, TValue>>;
|
|
578
|
+
ToImmutableDictionary<TKey>(keySelector: System.Func_2<T, TKey>): Rewrap<this, System_Collections_Immutable.ImmutableDictionary_2<TKey, T>>;
|
|
579
|
+
ToImmutableDictionary<TKey>(keySelector: System.Func_2<T, TKey>, keyComparer: System_Collections_Generic.IEqualityComparer_1<TKey>): Rewrap<this, System_Collections_Immutable.ImmutableDictionary_2<TKey, T>>;
|
|
580
|
+
ToImmutableDictionary<TKey, TValue>(keySelector: System.Func_2<T, TKey>, elementSelector: System.Func_2<T, TValue>): Rewrap<this, System_Collections_Immutable.ImmutableDictionary_2<TKey, TValue>>;
|
|
581
|
+
ToImmutableDictionary<TKey, TValue>(keyComparer: System_Collections_Generic.IEqualityComparer_1<TKey>, valueComparer: System_Collections_Generic.IEqualityComparer_1<TValue>): Rewrap<this, System_Collections_Immutable.ImmutableDictionary_2<TKey, TValue>>;
|
|
582
|
+
ToImmutableDictionary<TKey, TValue>(keyComparer: System_Collections_Generic.IEqualityComparer_1<TKey>): Rewrap<this, System_Collections_Immutable.ImmutableDictionary_2<TKey, TValue>>;
|
|
583
|
+
ToImmutableDictionary<TKey, TValue>(): Rewrap<this, System_Collections_Immutable.ImmutableDictionary_2<TKey, TValue>>;
|
|
584
|
+
ToImmutableHashSet(equalityComparer: System_Collections_Generic.IEqualityComparer_1<T>): Rewrap<this, System_Collections_Immutable.ImmutableHashSet_1<T>>;
|
|
585
|
+
ToImmutableHashSet(): Rewrap<this, System_Collections_Immutable.ImmutableHashSet_1<T>>;
|
|
586
|
+
ToImmutableSortedDictionary<TKey, TValue>(keySelector: System.Func_2<T, TKey>, elementSelector: System.Func_2<T, TValue>, keyComparer: System_Collections_Generic.IComparer_1<TKey>, valueComparer: System_Collections_Generic.IEqualityComparer_1<TValue>): Rewrap<this, System_Collections_Immutable.ImmutableSortedDictionary_2<TKey, TValue>>;
|
|
587
|
+
ToImmutableSortedDictionary<TKey, TValue>(keySelector: System.Func_2<T, TKey>, elementSelector: System.Func_2<T, TValue>, keyComparer: System_Collections_Generic.IComparer_1<TKey>): Rewrap<this, System_Collections_Immutable.ImmutableSortedDictionary_2<TKey, TValue>>;
|
|
588
|
+
ToImmutableSortedDictionary<TKey, TValue>(keySelector: System.Func_2<T, TKey>, elementSelector: System.Func_2<T, TValue>): Rewrap<this, System_Collections_Immutable.ImmutableSortedDictionary_2<TKey, TValue>>;
|
|
589
|
+
ToImmutableSortedDictionary<TKey, TValue>(keyComparer: System_Collections_Generic.IComparer_1<TKey>, valueComparer: System_Collections_Generic.IEqualityComparer_1<TValue>): Rewrap<this, System_Collections_Immutable.ImmutableSortedDictionary_2<TKey, TValue>>;
|
|
590
|
+
ToImmutableSortedDictionary<TKey, TValue>(keyComparer: System_Collections_Generic.IComparer_1<TKey>): Rewrap<this, System_Collections_Immutable.ImmutableSortedDictionary_2<TKey, TValue>>;
|
|
591
|
+
ToImmutableSortedDictionary<TKey, TValue>(): Rewrap<this, System_Collections_Immutable.ImmutableSortedDictionary_2<TKey, TValue>>;
|
|
592
|
+
ToImmutableSortedSet(comparer: System_Collections_Generic.IComparer_1<T>): Rewrap<this, System_Collections_Immutable.ImmutableSortedSet_1<T>>;
|
|
593
|
+
ToImmutableSortedSet(): Rewrap<this, System_Collections_Immutable.ImmutableSortedSet_1<T>>;
|
|
538
594
|
ToImmutableList(): Rewrap<this, System_Collections_Immutable.ImmutableList_1<T>>;
|
|
539
595
|
}
|
|
540
596
|
|
|
@@ -543,6 +599,24 @@ export interface __Ext_System_Collections_Immutable_ImmutableSortedDictionary_2_
|
|
|
543
599
|
}
|
|
544
600
|
|
|
545
601
|
export interface __Ext_System_Collections_Immutable_ImmutableSortedSet_1_Builder<T> {
|
|
602
|
+
ToImmutableArray(): Rewrap<this, System_Collections_Immutable.ImmutableArray_1<T>>;
|
|
603
|
+
ToImmutableDictionary<TKey, TValue>(keySelector: System.Func_2<T, TKey>, elementSelector: System.Func_2<T, TValue>, keyComparer: System_Collections_Generic.IEqualityComparer_1<TKey>, valueComparer: System_Collections_Generic.IEqualityComparer_1<TValue>): Rewrap<this, System_Collections_Immutable.ImmutableDictionary_2<TKey, TValue>>;
|
|
604
|
+
ToImmutableDictionary<TKey, TValue>(keySelector: System.Func_2<T, TKey>, elementSelector: System.Func_2<T, TValue>, keyComparer: System_Collections_Generic.IEqualityComparer_1<TKey>): Rewrap<this, System_Collections_Immutable.ImmutableDictionary_2<TKey, TValue>>;
|
|
605
|
+
ToImmutableDictionary<TKey>(keySelector: System.Func_2<T, TKey>): Rewrap<this, System_Collections_Immutable.ImmutableDictionary_2<TKey, T>>;
|
|
606
|
+
ToImmutableDictionary<TKey>(keySelector: System.Func_2<T, TKey>, keyComparer: System_Collections_Generic.IEqualityComparer_1<TKey>): Rewrap<this, System_Collections_Immutable.ImmutableDictionary_2<TKey, T>>;
|
|
607
|
+
ToImmutableDictionary<TKey, TValue>(keySelector: System.Func_2<T, TKey>, elementSelector: System.Func_2<T, TValue>): Rewrap<this, System_Collections_Immutable.ImmutableDictionary_2<TKey, TValue>>;
|
|
608
|
+
ToImmutableDictionary<TKey, TValue>(keyComparer: System_Collections_Generic.IEqualityComparer_1<TKey>, valueComparer: System_Collections_Generic.IEqualityComparer_1<TValue>): Rewrap<this, System_Collections_Immutable.ImmutableDictionary_2<TKey, TValue>>;
|
|
609
|
+
ToImmutableDictionary<TKey, TValue>(keyComparer: System_Collections_Generic.IEqualityComparer_1<TKey>): Rewrap<this, System_Collections_Immutable.ImmutableDictionary_2<TKey, TValue>>;
|
|
610
|
+
ToImmutableDictionary<TKey, TValue>(): Rewrap<this, System_Collections_Immutable.ImmutableDictionary_2<TKey, TValue>>;
|
|
611
|
+
ToImmutableHashSet(equalityComparer: System_Collections_Generic.IEqualityComparer_1<T>): Rewrap<this, System_Collections_Immutable.ImmutableHashSet_1<T>>;
|
|
612
|
+
ToImmutableHashSet(): Rewrap<this, System_Collections_Immutable.ImmutableHashSet_1<T>>;
|
|
613
|
+
ToImmutableList(): Rewrap<this, System_Collections_Immutable.ImmutableList_1<T>>;
|
|
614
|
+
ToImmutableSortedDictionary<TKey, TValue>(keySelector: System.Func_2<T, TKey>, elementSelector: System.Func_2<T, TValue>, keyComparer: System_Collections_Generic.IComparer_1<TKey>, valueComparer: System_Collections_Generic.IEqualityComparer_1<TValue>): Rewrap<this, System_Collections_Immutable.ImmutableSortedDictionary_2<TKey, TValue>>;
|
|
615
|
+
ToImmutableSortedDictionary<TKey, TValue>(keySelector: System.Func_2<T, TKey>, elementSelector: System.Func_2<T, TValue>, keyComparer: System_Collections_Generic.IComparer_1<TKey>): Rewrap<this, System_Collections_Immutable.ImmutableSortedDictionary_2<TKey, TValue>>;
|
|
616
|
+
ToImmutableSortedDictionary<TKey, TValue>(keySelector: System.Func_2<T, TKey>, elementSelector: System.Func_2<T, TValue>): Rewrap<this, System_Collections_Immutable.ImmutableSortedDictionary_2<TKey, TValue>>;
|
|
617
|
+
ToImmutableSortedDictionary<TKey, TValue>(keyComparer: System_Collections_Generic.IComparer_1<TKey>, valueComparer: System_Collections_Generic.IEqualityComparer_1<TValue>): Rewrap<this, System_Collections_Immutable.ImmutableSortedDictionary_2<TKey, TValue>>;
|
|
618
|
+
ToImmutableSortedDictionary<TKey, TValue>(keyComparer: System_Collections_Generic.IComparer_1<TKey>): Rewrap<this, System_Collections_Immutable.ImmutableSortedDictionary_2<TKey, TValue>>;
|
|
619
|
+
ToImmutableSortedDictionary<TKey, TValue>(): Rewrap<this, System_Collections_Immutable.ImmutableSortedDictionary_2<TKey, TValue>>;
|
|
546
620
|
ToImmutableSortedSet(): Rewrap<this, System_Collections_Immutable.ImmutableSortedSet_1<T>>;
|
|
547
621
|
}
|
|
548
622
|
|
|
@@ -628,6 +702,7 @@ export interface __Ext_System_Data_OrderedEnumerableRowCollection_1<TRow> {
|
|
|
628
702
|
}
|
|
629
703
|
|
|
630
704
|
export interface __Ext_System_Data_TypedTableBase_1<T> {
|
|
705
|
+
AsDataView(): Rewrap<this, System_Data.DataView>;
|
|
631
706
|
Where(predicate: System.Func_2<T, System_Internal.Boolean>): Rewrap<this, System_Data.EnumerableRowCollection_1<T>>;
|
|
632
707
|
OrderBy<TKey>(keySelector: System.Func_2<T, TKey>): Rewrap<this, System_Data.OrderedEnumerableRowCollection_1<T>>;
|
|
633
708
|
OrderBy<TKey>(keySelector: System.Func_2<T, TKey>, comparer: System_Collections_Generic.IComparer_1<TKey>): Rewrap<this, System_Data.OrderedEnumerableRowCollection_1<T>>;
|
|
@@ -886,6 +961,8 @@ export interface __Ext_System_Linq_IAsyncEnumerable_1<T> {
|
|
|
886
961
|
}
|
|
887
962
|
|
|
888
963
|
export interface __Ext_System_Linq_IEnumerable_1<T> {
|
|
964
|
+
Cast<TResult>(): Rewrap<this, System_Collections_Generic.IEnumerable_1<TResult>>;
|
|
965
|
+
OfType<TResult>(): Rewrap<this, System_Collections_Generic.IEnumerable_1<TResult>>;
|
|
889
966
|
Aggregate(func: System.Func_3<T, T, T>): Rewrap<this, T>;
|
|
890
967
|
Aggregate<TAccumulate>(seed: TAccumulate, func: System.Func_3<TAccumulate, T, TAccumulate>): Rewrap<this, TAccumulate>;
|
|
891
968
|
Aggregate<TAccumulate, TResult>(seed: TAccumulate, func: System.Func_3<TAccumulate, T, TAccumulate>, resultSelector: System.Func_2<TAccumulate, TResult>): Rewrap<this, TResult>;
|
|
@@ -1109,6 +1186,176 @@ export interface __Ext_System_Linq_IEnumerable {
|
|
|
1109
1186
|
}
|
|
1110
1187
|
|
|
1111
1188
|
export interface __Ext_System_Linq_ImmutableArray_1<T> {
|
|
1189
|
+
Cast<TResult>(): Rewrap<this, System_Collections_Generic.IEnumerable_1<TResult>>;
|
|
1190
|
+
OfType<TResult>(): Rewrap<this, System_Collections_Generic.IEnumerable_1<TResult>>;
|
|
1191
|
+
Append(element: T): Rewrap<this, System_Collections_Generic.IEnumerable_1<T>>;
|
|
1192
|
+
Prepend(element: T): Rewrap<this, System_Collections_Generic.IEnumerable_1<T>>;
|
|
1193
|
+
Average(): Rewrap<this, double>;
|
|
1194
|
+
Average(): Rewrap<this, double>;
|
|
1195
|
+
Average(): Rewrap<this, float>;
|
|
1196
|
+
Average(): Rewrap<this, double>;
|
|
1197
|
+
Average(): Rewrap<this, decimal>;
|
|
1198
|
+
Average(): Rewrap<this, System.Nullable_1<System_Internal.Double>>;
|
|
1199
|
+
Average(): Rewrap<this, System.Nullable_1<System_Internal.Double>>;
|
|
1200
|
+
Average(): Rewrap<this, System.Nullable_1<System_Internal.Single>>;
|
|
1201
|
+
Average(): Rewrap<this, System.Nullable_1<System_Internal.Double>>;
|
|
1202
|
+
Average(): Rewrap<this, System.Nullable_1<System_Internal.Decimal>>;
|
|
1203
|
+
Average(selector: System.Func_2<T, System_Internal.Int32>): Rewrap<this, double>;
|
|
1204
|
+
Average(selector: System.Func_2<T, System_Internal.Single>): Rewrap<this, float>;
|
|
1205
|
+
Average(selector: System.Func_2<T, System_Internal.Decimal>): Rewrap<this, decimal>;
|
|
1206
|
+
Average(selector: System.Func_2<T, System.Nullable_1<System_Internal.Int32>>): Rewrap<this, System.Nullable_1<System_Internal.Double>>;
|
|
1207
|
+
Average(selector: System.Func_2<T, System.Nullable_1<System_Internal.Single>>): Rewrap<this, System.Nullable_1<System_Internal.Single>>;
|
|
1208
|
+
Average(selector: System.Func_2<T, System.Nullable_1<System_Internal.Decimal>>): Rewrap<this, System.Nullable_1<System_Internal.Decimal>>;
|
|
1209
|
+
Chunk(size: int): Rewrap<this, System_Collections_Generic.IEnumerable_1<T[]>>;
|
|
1210
|
+
Concat(second: System_Collections_Generic.IEnumerable_1<T>): Rewrap<this, System_Collections_Generic.IEnumerable_1<T>>;
|
|
1211
|
+
Contains(value: T): Rewrap<this, boolean>;
|
|
1212
|
+
Contains(value: T, comparer: System_Collections_Generic.IEqualityComparer_1<T>): Rewrap<this, boolean>;
|
|
1213
|
+
AggregateBy<TKey, TAccumulate>(keySelector: System.Func_2<T, TKey>, seed: TAccumulate, func: System.Func_3<TAccumulate, T, TAccumulate>, keyComparer?: System_Collections_Generic.IEqualityComparer_1<TKey>): Rewrap<this, System_Collections_Generic.IEnumerable_1<System_Collections_Generic.KeyValuePair_2<TKey, TAccumulate>>>;
|
|
1214
|
+
AggregateBy<TKey, TAccumulate>(keySelector: System.Func_2<T, TKey>, seedSelector: System.Func_2<TKey, TAccumulate>, func: System.Func_3<TAccumulate, T, TAccumulate>, keyComparer?: System_Collections_Generic.IEqualityComparer_1<TKey>): Rewrap<this, System_Collections_Generic.IEnumerable_1<System_Collections_Generic.KeyValuePair_2<TKey, TAccumulate>>>;
|
|
1215
|
+
CountBy<TKey>(keySelector: System.Func_2<T, TKey>, keyComparer?: System_Collections_Generic.IEqualityComparer_1<TKey>): Rewrap<this, System_Collections_Generic.IEnumerable_1<System_Collections_Generic.KeyValuePair_2<TKey, System_Internal.Int32>>>;
|
|
1216
|
+
Count(): Rewrap<this, int>;
|
|
1217
|
+
Count(predicate: System.Func_2<T, System_Internal.Boolean>): Rewrap<this, int>;
|
|
1218
|
+
TryGetNonEnumeratedCount(count: int): Rewrap<this, boolean>;
|
|
1219
|
+
LongCount(): Rewrap<this, long>;
|
|
1220
|
+
LongCount(predicate: System.Func_2<T, System_Internal.Boolean>): Rewrap<this, long>;
|
|
1221
|
+
DefaultIfEmpty(): Rewrap<this, System_Collections_Generic.IEnumerable_1<T | undefined>>;
|
|
1222
|
+
DefaultIfEmpty(defaultValue: T): Rewrap<this, System_Collections_Generic.IEnumerable_1<T>>;
|
|
1223
|
+
Distinct(): Rewrap<this, System_Collections_Generic.IEnumerable_1<T>>;
|
|
1224
|
+
Distinct(comparer: System_Collections_Generic.IEqualityComparer_1<T>): Rewrap<this, System_Collections_Generic.IEnumerable_1<T>>;
|
|
1225
|
+
DistinctBy<TKey>(keySelector: System.Func_2<T, TKey>): Rewrap<this, System_Collections_Generic.IEnumerable_1<T>>;
|
|
1226
|
+
DistinctBy<TKey>(keySelector: System.Func_2<T, TKey>, comparer: System_Collections_Generic.IEqualityComparer_1<TKey>): Rewrap<this, System_Collections_Generic.IEnumerable_1<T>>;
|
|
1227
|
+
AsEnumerable(): Rewrap<this, System_Collections_Generic.IEnumerable_1<T>>;
|
|
1228
|
+
Except(second: System_Collections_Generic.IEnumerable_1<T>): Rewrap<this, System_Collections_Generic.IEnumerable_1<T>>;
|
|
1229
|
+
Except(second: System_Collections_Generic.IEnumerable_1<T>, comparer: System_Collections_Generic.IEqualityComparer_1<T>): Rewrap<this, System_Collections_Generic.IEnumerable_1<T>>;
|
|
1230
|
+
ExceptBy<TKey>(second: System_Collections_Generic.IEnumerable_1<TKey>, keySelector: System.Func_2<T, TKey>): Rewrap<this, System_Collections_Generic.IEnumerable_1<T>>;
|
|
1231
|
+
ExceptBy<TKey>(second: System_Collections_Generic.IEnumerable_1<TKey>, keySelector: System.Func_2<T, TKey>, comparer: System_Collections_Generic.IEqualityComparer_1<TKey>): Rewrap<this, System_Collections_Generic.IEnumerable_1<T>>;
|
|
1232
|
+
GroupBy<TKey>(keySelector: System.Func_2<T, TKey>): Rewrap<this, System_Collections_Generic.IEnumerable_1<System_Linq.IGrouping_2<TKey, T>>>;
|
|
1233
|
+
GroupBy<TKey>(keySelector: System.Func_2<T, TKey>, comparer: System_Collections_Generic.IEqualityComparer_1<TKey>): Rewrap<this, System_Collections_Generic.IEnumerable_1<System_Linq.IGrouping_2<TKey, T>>>;
|
|
1234
|
+
GroupBy<TKey, TElement>(keySelector: System.Func_2<T, TKey>, elementSelector: System.Func_2<T, TElement>): Rewrap<this, System_Collections_Generic.IEnumerable_1<System_Linq.IGrouping_2<TKey, TElement>>>;
|
|
1235
|
+
GroupBy<TKey, TElement>(keySelector: System.Func_2<T, TKey>, elementSelector: System.Func_2<T, TElement>, comparer: System_Collections_Generic.IEqualityComparer_1<TKey>): Rewrap<this, System_Collections_Generic.IEnumerable_1<System_Linq.IGrouping_2<TKey, TElement>>>;
|
|
1236
|
+
GroupBy<TKey, TResult>(keySelector: System.Func_2<T, TKey>, resultSelector: System.Func_3<TKey, System_Collections_Generic.IEnumerable_1<T>, TResult>): Rewrap<this, System_Collections_Generic.IEnumerable_1<TResult>>;
|
|
1237
|
+
GroupBy<TKey, TResult>(keySelector: System.Func_2<T, TKey>, resultSelector: System.Func_3<TKey, System_Collections_Generic.IEnumerable_1<T>, TResult>, comparer: System_Collections_Generic.IEqualityComparer_1<TKey>): Rewrap<this, System_Collections_Generic.IEnumerable_1<TResult>>;
|
|
1238
|
+
GroupBy<TKey, TElement, TResult>(keySelector: System.Func_2<T, TKey>, elementSelector: System.Func_2<T, TElement>, resultSelector: System.Func_3<TKey, System_Collections_Generic.IEnumerable_1<TElement>, TResult>): Rewrap<this, System_Collections_Generic.IEnumerable_1<TResult>>;
|
|
1239
|
+
GroupBy<TKey, TElement, TResult>(keySelector: System.Func_2<T, TKey>, elementSelector: System.Func_2<T, TElement>, resultSelector: System.Func_3<TKey, System_Collections_Generic.IEnumerable_1<TElement>, TResult>, comparer: System_Collections_Generic.IEqualityComparer_1<TKey>): Rewrap<this, System_Collections_Generic.IEnumerable_1<TResult>>;
|
|
1240
|
+
GroupJoin<TInner, TKey, TResult>(inner: System_Collections_Generic.IEnumerable_1<TInner>, outerKeySelector: System.Func_2<T, TKey>, innerKeySelector: System.Func_2<TInner, TKey>, resultSelector: System.Func_3<T, System_Collections_Generic.IEnumerable_1<TInner>, TResult>): Rewrap<this, System_Collections_Generic.IEnumerable_1<TResult>>;
|
|
1241
|
+
GroupJoin<TInner, TKey, TResult>(inner: System_Collections_Generic.IEnumerable_1<TInner>, outerKeySelector: System.Func_2<T, TKey>, innerKeySelector: System.Func_2<TInner, TKey>, resultSelector: System.Func_3<T, System_Collections_Generic.IEnumerable_1<TInner>, TResult>, comparer: System_Collections_Generic.IEqualityComparer_1<TKey>): Rewrap<this, System_Collections_Generic.IEnumerable_1<TResult>>;
|
|
1242
|
+
Index(): Rewrap<this, System_Collections_Generic.IEnumerable_1<System.ValueTuple_2<System_Internal.Int32, T>>>;
|
|
1243
|
+
Intersect(second: System_Collections_Generic.IEnumerable_1<T>): Rewrap<this, System_Collections_Generic.IEnumerable_1<T>>;
|
|
1244
|
+
Intersect(second: System_Collections_Generic.IEnumerable_1<T>, comparer: System_Collections_Generic.IEqualityComparer_1<T>): Rewrap<this, System_Collections_Generic.IEnumerable_1<T>>;
|
|
1245
|
+
IntersectBy<TKey>(second: System_Collections_Generic.IEnumerable_1<TKey>, keySelector: System.Func_2<T, TKey>): Rewrap<this, System_Collections_Generic.IEnumerable_1<T>>;
|
|
1246
|
+
IntersectBy<TKey>(second: System_Collections_Generic.IEnumerable_1<TKey>, keySelector: System.Func_2<T, TKey>, comparer: System_Collections_Generic.IEqualityComparer_1<TKey>): Rewrap<this, System_Collections_Generic.IEnumerable_1<T>>;
|
|
1247
|
+
Join<TInner, TKey, TResult>(inner: System_Collections_Generic.IEnumerable_1<TInner>, outerKeySelector: System.Func_2<T, TKey>, innerKeySelector: System.Func_2<TInner, TKey>, resultSelector: System.Func_3<T, TInner, TResult>): Rewrap<this, System_Collections_Generic.IEnumerable_1<TResult>>;
|
|
1248
|
+
Join<TInner, TKey, TResult>(inner: System_Collections_Generic.IEnumerable_1<TInner>, outerKeySelector: System.Func_2<T, TKey>, innerKeySelector: System.Func_2<TInner, TKey>, resultSelector: System.Func_3<T, TInner, TResult>, comparer: System_Collections_Generic.IEqualityComparer_1<TKey>): Rewrap<this, System_Collections_Generic.IEnumerable_1<TResult>>;
|
|
1249
|
+
LeftJoin<TInner, TKey, TResult>(inner: System_Collections_Generic.IEnumerable_1<TInner>, outerKeySelector: System.Func_2<T, TKey>, innerKeySelector: System.Func_2<TInner, TKey>, resultSelector: System.Func_3<T, TInner, TResult>): Rewrap<this, System_Collections_Generic.IEnumerable_1<TResult>>;
|
|
1250
|
+
LeftJoin<TInner, TKey, TResult>(inner: System_Collections_Generic.IEnumerable_1<TInner>, outerKeySelector: System.Func_2<T, TKey>, innerKeySelector: System.Func_2<TInner, TKey>, resultSelector: System.Func_3<T, TInner, TResult>, comparer: System_Collections_Generic.IEqualityComparer_1<TKey>): Rewrap<this, System_Collections_Generic.IEnumerable_1<TResult>>;
|
|
1251
|
+
ToLookup<TKey>(keySelector: System.Func_2<T, TKey>): Rewrap<this, System_Linq.ILookup_2<TKey, T>>;
|
|
1252
|
+
ToLookup<TKey>(keySelector: System.Func_2<T, TKey>, comparer: System_Collections_Generic.IEqualityComparer_1<TKey>): Rewrap<this, System_Linq.ILookup_2<TKey, T>>;
|
|
1253
|
+
ToLookup<TKey, TElement>(keySelector: System.Func_2<T, TKey>, elementSelector: System.Func_2<T, TElement>): Rewrap<this, System_Linq.ILookup_2<TKey, TElement>>;
|
|
1254
|
+
ToLookup<TKey, TElement>(keySelector: System.Func_2<T, TKey>, elementSelector: System.Func_2<T, TElement>, comparer: System_Collections_Generic.IEqualityComparer_1<TKey>): Rewrap<this, System_Linq.ILookup_2<TKey, TElement>>;
|
|
1255
|
+
Max(): Rewrap<this, int>;
|
|
1256
|
+
Max(): Rewrap<this, long>;
|
|
1257
|
+
Max(): Rewrap<this, System.Nullable_1<System_Internal.Int32>>;
|
|
1258
|
+
Max(): Rewrap<this, System.Nullable_1<System_Internal.Int64>>;
|
|
1259
|
+
Max(): Rewrap<this, double>;
|
|
1260
|
+
Max(): Rewrap<this, System.Nullable_1<System_Internal.Double>>;
|
|
1261
|
+
Max(): Rewrap<this, float>;
|
|
1262
|
+
Max(): Rewrap<this, System.Nullable_1<System_Internal.Single>>;
|
|
1263
|
+
Max(): Rewrap<this, decimal>;
|
|
1264
|
+
Max(): Rewrap<this, System.Nullable_1<System_Internal.Decimal>>;
|
|
1265
|
+
Max(): Rewrap<this, T | undefined>;
|
|
1266
|
+
Max(comparer: System_Collections_Generic.IComparer_1<T>): Rewrap<this, T | undefined>;
|
|
1267
|
+
MaxBy<TKey>(keySelector: System.Func_2<T, TKey>): Rewrap<this, T | undefined>;
|
|
1268
|
+
MaxBy<TKey>(keySelector: System.Func_2<T, TKey>, comparer: System_Collections_Generic.IComparer_1<TKey>): Rewrap<this, T | undefined>;
|
|
1269
|
+
Max(selector: System.Func_2<T, System_Internal.Int32>): Rewrap<this, int>;
|
|
1270
|
+
Max(selector: System.Func_2<T, System.Nullable_1<System_Internal.Int32>>): Rewrap<this, System.Nullable_1<System_Internal.Int32>>;
|
|
1271
|
+
Max(selector: System.Func_2<T, System_Internal.Int64>): Rewrap<this, long>;
|
|
1272
|
+
Max(selector: System.Func_2<T, System.Nullable_1<System_Internal.Int64>>): Rewrap<this, System.Nullable_1<System_Internal.Int64>>;
|
|
1273
|
+
Max(selector: System.Func_2<T, System_Internal.Single>): Rewrap<this, float>;
|
|
1274
|
+
Max(selector: System.Func_2<T, System.Nullable_1<System_Internal.Single>>): Rewrap<this, System.Nullable_1<System_Internal.Single>>;
|
|
1275
|
+
Max(selector: System.Func_2<T, System_Internal.Double>): Rewrap<this, double>;
|
|
1276
|
+
Max(selector: System.Func_2<T, System.Nullable_1<System_Internal.Double>>): Rewrap<this, System.Nullable_1<System_Internal.Double>>;
|
|
1277
|
+
Max(selector: System.Func_2<T, System_Internal.Decimal>): Rewrap<this, decimal>;
|
|
1278
|
+
Max(selector: System.Func_2<T, System.Nullable_1<System_Internal.Decimal>>): Rewrap<this, System.Nullable_1<System_Internal.Decimal>>;
|
|
1279
|
+
Max<TResult>(selector: System.Func_2<T, TResult>): Rewrap<this, TResult | undefined>;
|
|
1280
|
+
Min(): Rewrap<this, int>;
|
|
1281
|
+
Min(): Rewrap<this, long>;
|
|
1282
|
+
Min(): Rewrap<this, System.Nullable_1<System_Internal.Int32>>;
|
|
1283
|
+
Min(): Rewrap<this, System.Nullable_1<System_Internal.Int64>>;
|
|
1284
|
+
Min(): Rewrap<this, float>;
|
|
1285
|
+
Min(): Rewrap<this, System.Nullable_1<System_Internal.Single>>;
|
|
1286
|
+
Min(): Rewrap<this, double>;
|
|
1287
|
+
Min(): Rewrap<this, System.Nullable_1<System_Internal.Double>>;
|
|
1288
|
+
Min(): Rewrap<this, decimal>;
|
|
1289
|
+
Min(): Rewrap<this, System.Nullable_1<System_Internal.Decimal>>;
|
|
1290
|
+
Min(): Rewrap<this, T | undefined>;
|
|
1291
|
+
Min(comparer: System_Collections_Generic.IComparer_1<T>): Rewrap<this, T | undefined>;
|
|
1292
|
+
MinBy<TKey>(keySelector: System.Func_2<T, TKey>): Rewrap<this, T | undefined>;
|
|
1293
|
+
MinBy<TKey>(keySelector: System.Func_2<T, TKey>, comparer: System_Collections_Generic.IComparer_1<TKey>): Rewrap<this, T | undefined>;
|
|
1294
|
+
Min(selector: System.Func_2<T, System_Internal.Int32>): Rewrap<this, int>;
|
|
1295
|
+
Min(selector: System.Func_2<T, System.Nullable_1<System_Internal.Int32>>): Rewrap<this, System.Nullable_1<System_Internal.Int32>>;
|
|
1296
|
+
Min(selector: System.Func_2<T, System_Internal.Int64>): Rewrap<this, long>;
|
|
1297
|
+
Min(selector: System.Func_2<T, System.Nullable_1<System_Internal.Int64>>): Rewrap<this, System.Nullable_1<System_Internal.Int64>>;
|
|
1298
|
+
Min(selector: System.Func_2<T, System_Internal.Single>): Rewrap<this, float>;
|
|
1299
|
+
Min(selector: System.Func_2<T, System.Nullable_1<System_Internal.Single>>): Rewrap<this, System.Nullable_1<System_Internal.Single>>;
|
|
1300
|
+
Min(selector: System.Func_2<T, System_Internal.Double>): Rewrap<this, double>;
|
|
1301
|
+
Min(selector: System.Func_2<T, System.Nullable_1<System_Internal.Double>>): Rewrap<this, System.Nullable_1<System_Internal.Double>>;
|
|
1302
|
+
Min(selector: System.Func_2<T, System_Internal.Decimal>): Rewrap<this, decimal>;
|
|
1303
|
+
Min(selector: System.Func_2<T, System.Nullable_1<System_Internal.Decimal>>): Rewrap<this, System.Nullable_1<System_Internal.Decimal>>;
|
|
1304
|
+
Min<TResult>(selector: System.Func_2<T, TResult>): Rewrap<this, TResult | undefined>;
|
|
1305
|
+
Order(): Rewrap<this, System_Linq.IOrderedEnumerable_1<T>>;
|
|
1306
|
+
Order(comparer: System_Collections_Generic.IComparer_1<T>): Rewrap<this, System_Linq.IOrderedEnumerable_1<T>>;
|
|
1307
|
+
OrderBy<TKey>(keySelector: System.Func_2<T, TKey>): Rewrap<this, System_Linq.IOrderedEnumerable_1<T>>;
|
|
1308
|
+
OrderBy<TKey>(keySelector: System.Func_2<T, TKey>, comparer: System_Collections_Generic.IComparer_1<TKey>): Rewrap<this, System_Linq.IOrderedEnumerable_1<T>>;
|
|
1309
|
+
OrderDescending(): Rewrap<this, System_Linq.IOrderedEnumerable_1<T>>;
|
|
1310
|
+
OrderDescending(comparer: System_Collections_Generic.IComparer_1<T>): Rewrap<this, System_Linq.IOrderedEnumerable_1<T>>;
|
|
1311
|
+
OrderByDescending<TKey>(keySelector: System.Func_2<T, TKey>): Rewrap<this, System_Linq.IOrderedEnumerable_1<T>>;
|
|
1312
|
+
OrderByDescending<TKey>(keySelector: System.Func_2<T, TKey>, comparer: System_Collections_Generic.IComparer_1<TKey>): Rewrap<this, System_Linq.IOrderedEnumerable_1<T>>;
|
|
1313
|
+
Shuffle(): Rewrap<this, System_Collections_Generic.IEnumerable_1<T>>;
|
|
1314
|
+
Reverse(): Rewrap<this, System_Collections_Generic.IEnumerable_1<T>>;
|
|
1315
|
+
RightJoin<TInner, TKey, TResult>(inner: System_Collections_Generic.IEnumerable_1<TInner>, outerKeySelector: System.Func_2<T, TKey>, innerKeySelector: System.Func_2<TInner, TKey>, resultSelector: System.Func_3<T, TInner, TResult>): Rewrap<this, System_Collections_Generic.IEnumerable_1<TResult>>;
|
|
1316
|
+
RightJoin<TInner, TKey, TResult>(inner: System_Collections_Generic.IEnumerable_1<TInner>, outerKeySelector: System.Func_2<T, TKey>, innerKeySelector: System.Func_2<TInner, TKey>, resultSelector: System.Func_3<T, TInner, TResult>, comparer: System_Collections_Generic.IEqualityComparer_1<TKey>): Rewrap<this, System_Collections_Generic.IEnumerable_1<TResult>>;
|
|
1317
|
+
Skip(count: int): Rewrap<this, System_Collections_Generic.IEnumerable_1<T>>;
|
|
1318
|
+
SkipWhile(predicate: System.Func_2<T, System_Internal.Boolean>): Rewrap<this, System_Collections_Generic.IEnumerable_1<T>>;
|
|
1319
|
+
SkipWhile(predicate: System.Func_3<T, System_Internal.Int32, System_Internal.Boolean>): Rewrap<this, System_Collections_Generic.IEnumerable_1<T>>;
|
|
1320
|
+
SkipLast(count: int): Rewrap<this, System_Collections_Generic.IEnumerable_1<T>>;
|
|
1321
|
+
Sum(): Rewrap<this, int>;
|
|
1322
|
+
Sum(): Rewrap<this, long>;
|
|
1323
|
+
Sum(): Rewrap<this, float>;
|
|
1324
|
+
Sum(): Rewrap<this, double>;
|
|
1325
|
+
Sum(): Rewrap<this, decimal>;
|
|
1326
|
+
Sum(): Rewrap<this, System.Nullable_1<System_Internal.Int32>>;
|
|
1327
|
+
Sum(): Rewrap<this, System.Nullable_1<System_Internal.Int64>>;
|
|
1328
|
+
Sum(): Rewrap<this, System.Nullable_1<System_Internal.Single>>;
|
|
1329
|
+
Sum(): Rewrap<this, System.Nullable_1<System_Internal.Double>>;
|
|
1330
|
+
Sum(): Rewrap<this, System.Nullable_1<System_Internal.Decimal>>;
|
|
1331
|
+
Sum(selector: System.Func_2<T, System_Internal.Int32>): Rewrap<this, int>;
|
|
1332
|
+
Sum(selector: System.Func_2<T, System_Internal.Int64>): Rewrap<this, long>;
|
|
1333
|
+
Sum(selector: System.Func_2<T, System_Internal.Single>): Rewrap<this, float>;
|
|
1334
|
+
Sum(selector: System.Func_2<T, System_Internal.Double>): Rewrap<this, double>;
|
|
1335
|
+
Sum(selector: System.Func_2<T, System_Internal.Decimal>): Rewrap<this, decimal>;
|
|
1336
|
+
Sum(selector: System.Func_2<T, System.Nullable_1<System_Internal.Int32>>): Rewrap<this, System.Nullable_1<System_Internal.Int32>>;
|
|
1337
|
+
Sum(selector: System.Func_2<T, System.Nullable_1<System_Internal.Int64>>): Rewrap<this, System.Nullable_1<System_Internal.Int64>>;
|
|
1338
|
+
Sum(selector: System.Func_2<T, System.Nullable_1<System_Internal.Single>>): Rewrap<this, System.Nullable_1<System_Internal.Single>>;
|
|
1339
|
+
Sum(selector: System.Func_2<T, System.Nullable_1<System_Internal.Double>>): Rewrap<this, System.Nullable_1<System_Internal.Double>>;
|
|
1340
|
+
Sum(selector: System.Func_2<T, System.Nullable_1<System_Internal.Decimal>>): Rewrap<this, System.Nullable_1<System_Internal.Decimal>>;
|
|
1341
|
+
Take(count: int): Rewrap<this, System_Collections_Generic.IEnumerable_1<T>>;
|
|
1342
|
+
Take(range: System.Range): Rewrap<this, System_Collections_Generic.IEnumerable_1<T>>;
|
|
1343
|
+
TakeWhile(predicate: System.Func_2<T, System_Internal.Boolean>): Rewrap<this, System_Collections_Generic.IEnumerable_1<T>>;
|
|
1344
|
+
TakeWhile(predicate: System.Func_3<T, System_Internal.Int32, System_Internal.Boolean>): Rewrap<this, System_Collections_Generic.IEnumerable_1<T>>;
|
|
1345
|
+
TakeLast(count: int): Rewrap<this, System_Collections_Generic.IEnumerable_1<T>>;
|
|
1346
|
+
ToList(): Rewrap<this, System_Collections_Generic.List_1<T>>;
|
|
1347
|
+
ToHashSet(): Rewrap<this, System_Collections_Generic.HashSet_1<T>>;
|
|
1348
|
+
ToHashSet(comparer: System_Collections_Generic.IEqualityComparer_1<T>): Rewrap<this, System_Collections_Generic.HashSet_1<T>>;
|
|
1349
|
+
Union(second: System_Collections_Generic.IEnumerable_1<T>): Rewrap<this, System_Collections_Generic.IEnumerable_1<T>>;
|
|
1350
|
+
Union(second: System_Collections_Generic.IEnumerable_1<T>, comparer: System_Collections_Generic.IEqualityComparer_1<T>): Rewrap<this, System_Collections_Generic.IEnumerable_1<T>>;
|
|
1351
|
+
UnionBy<TKey>(second: System_Collections_Generic.IEnumerable_1<T>, keySelector: System.Func_2<T, TKey>): Rewrap<this, System_Collections_Generic.IEnumerable_1<T>>;
|
|
1352
|
+
UnionBy<TKey>(second: System_Collections_Generic.IEnumerable_1<T>, keySelector: System.Func_2<T, TKey>, comparer: System_Collections_Generic.IEqualityComparer_1<TKey>): Rewrap<this, System_Collections_Generic.IEnumerable_1<T>>;
|
|
1353
|
+
Zip<TSecond, TResult>(second: System_Collections_Generic.IEnumerable_1<TSecond>, resultSelector: System.Func_3<T, TSecond, TResult>): Rewrap<this, System_Collections_Generic.IEnumerable_1<TResult>>;
|
|
1354
|
+
Zip<TSecond>(second: System_Collections_Generic.IEnumerable_1<TSecond>): Rewrap<this, System_Collections_Generic.IEnumerable_1<System.ValueTuple_2<T, TSecond>>>;
|
|
1355
|
+
Zip<TSecond, TThird>(second: System_Collections_Generic.IEnumerable_1<TSecond>, third: System_Collections_Generic.IEnumerable_1<TThird>): Rewrap<this, System_Collections_Generic.IEnumerable_1<System.ValueTuple_3<T, TSecond, TThird>>>;
|
|
1356
|
+
ToAsyncEnumerable(): Rewrap<this, System_Collections_Generic.IAsyncEnumerable_1<T>>;
|
|
1357
|
+
AsParallel(): Rewrap<this, System_Linq.ParallelQuery_1<T>>;
|
|
1358
|
+
AsQueryable(): Rewrap<this, System_Linq.IQueryable_1<T>>;
|
|
1112
1359
|
Select<TResult>(selector: System.Func_2<T, TResult>): Rewrap<this, System_Collections_Generic.IEnumerable_1<TResult>>;
|
|
1113
1360
|
SelectMany<TCollection, TResult>(collectionSelector: System.Func_2<T, System_Collections_Generic.IEnumerable_1<TCollection>>, resultSelector: System.Func_3<T, TCollection, TResult>): Rewrap<this, System_Collections_Generic.IEnumerable_1<TResult>>;
|
|
1114
1361
|
Where(predicate: System.Func_2<T, System_Internal.Boolean>): Rewrap<this, System_Collections_Generic.IEnumerable_1<T>>;
|
|
@@ -1143,6 +1390,207 @@ export interface __Ext_System_Linq_ImmutableArray_1<T> {
|
|
|
1143
1390
|
}
|
|
1144
1391
|
|
|
1145
1392
|
export interface __Ext_System_Linq_ImmutableArray_1_Builder<T> {
|
|
1393
|
+
Cast<TResult>(): Rewrap<this, System_Collections_Generic.IEnumerable_1<TResult>>;
|
|
1394
|
+
OfType<TResult>(): Rewrap<this, System_Collections_Generic.IEnumerable_1<TResult>>;
|
|
1395
|
+
Aggregate(func: System.Func_3<T, T, T>): Rewrap<this, T>;
|
|
1396
|
+
Aggregate<TAccumulate>(seed: TAccumulate, func: System.Func_3<TAccumulate, T, TAccumulate>): Rewrap<this, TAccumulate>;
|
|
1397
|
+
Aggregate<TAccumulate, TResult>(seed: TAccumulate, func: System.Func_3<TAccumulate, T, TAccumulate>, resultSelector: System.Func_2<TAccumulate, TResult>): Rewrap<this, TResult>;
|
|
1398
|
+
All(predicate: System.Func_2<T, System_Internal.Boolean>): Rewrap<this, boolean>;
|
|
1399
|
+
Append(element: T): Rewrap<this, System_Collections_Generic.IEnumerable_1<T>>;
|
|
1400
|
+
Prepend(element: T): Rewrap<this, System_Collections_Generic.IEnumerable_1<T>>;
|
|
1401
|
+
Average(): Rewrap<this, double>;
|
|
1402
|
+
Average(): Rewrap<this, double>;
|
|
1403
|
+
Average(): Rewrap<this, float>;
|
|
1404
|
+
Average(): Rewrap<this, double>;
|
|
1405
|
+
Average(): Rewrap<this, decimal>;
|
|
1406
|
+
Average(): Rewrap<this, System.Nullable_1<System_Internal.Double>>;
|
|
1407
|
+
Average(): Rewrap<this, System.Nullable_1<System_Internal.Double>>;
|
|
1408
|
+
Average(): Rewrap<this, System.Nullable_1<System_Internal.Single>>;
|
|
1409
|
+
Average(): Rewrap<this, System.Nullable_1<System_Internal.Double>>;
|
|
1410
|
+
Average(): Rewrap<this, System.Nullable_1<System_Internal.Decimal>>;
|
|
1411
|
+
Average(selector: System.Func_2<T, System_Internal.Int32>): Rewrap<this, double>;
|
|
1412
|
+
Average(selector: System.Func_2<T, System_Internal.Single>): Rewrap<this, float>;
|
|
1413
|
+
Average(selector: System.Func_2<T, System_Internal.Decimal>): Rewrap<this, decimal>;
|
|
1414
|
+
Average(selector: System.Func_2<T, System.Nullable_1<System_Internal.Int32>>): Rewrap<this, System.Nullable_1<System_Internal.Double>>;
|
|
1415
|
+
Average(selector: System.Func_2<T, System.Nullable_1<System_Internal.Single>>): Rewrap<this, System.Nullable_1<System_Internal.Single>>;
|
|
1416
|
+
Average(selector: System.Func_2<T, System.Nullable_1<System_Internal.Decimal>>): Rewrap<this, System.Nullable_1<System_Internal.Decimal>>;
|
|
1417
|
+
Chunk(size: int): Rewrap<this, System_Collections_Generic.IEnumerable_1<T[]>>;
|
|
1418
|
+
Concat(second: System_Collections_Generic.IEnumerable_1<T>): Rewrap<this, System_Collections_Generic.IEnumerable_1<T>>;
|
|
1419
|
+
Contains(value: T): Rewrap<this, boolean>;
|
|
1420
|
+
Contains(value: T, comparer: System_Collections_Generic.IEqualityComparer_1<T>): Rewrap<this, boolean>;
|
|
1421
|
+
AggregateBy<TKey, TAccumulate>(keySelector: System.Func_2<T, TKey>, seed: TAccumulate, func: System.Func_3<TAccumulate, T, TAccumulate>, keyComparer?: System_Collections_Generic.IEqualityComparer_1<TKey>): Rewrap<this, System_Collections_Generic.IEnumerable_1<System_Collections_Generic.KeyValuePair_2<TKey, TAccumulate>>>;
|
|
1422
|
+
AggregateBy<TKey, TAccumulate>(keySelector: System.Func_2<T, TKey>, seedSelector: System.Func_2<TKey, TAccumulate>, func: System.Func_3<TAccumulate, T, TAccumulate>, keyComparer?: System_Collections_Generic.IEqualityComparer_1<TKey>): Rewrap<this, System_Collections_Generic.IEnumerable_1<System_Collections_Generic.KeyValuePair_2<TKey, TAccumulate>>>;
|
|
1423
|
+
CountBy<TKey>(keySelector: System.Func_2<T, TKey>, keyComparer?: System_Collections_Generic.IEqualityComparer_1<TKey>): Rewrap<this, System_Collections_Generic.IEnumerable_1<System_Collections_Generic.KeyValuePair_2<TKey, System_Internal.Int32>>>;
|
|
1424
|
+
Count(): Rewrap<this, int>;
|
|
1425
|
+
Count(predicate: System.Func_2<T, System_Internal.Boolean>): Rewrap<this, int>;
|
|
1426
|
+
TryGetNonEnumeratedCount(count: int): Rewrap<this, boolean>;
|
|
1427
|
+
LongCount(): Rewrap<this, long>;
|
|
1428
|
+
LongCount(predicate: System.Func_2<T, System_Internal.Boolean>): Rewrap<this, long>;
|
|
1429
|
+
DefaultIfEmpty(): Rewrap<this, System_Collections_Generic.IEnumerable_1<T | undefined>>;
|
|
1430
|
+
DefaultIfEmpty(defaultValue: T): Rewrap<this, System_Collections_Generic.IEnumerable_1<T>>;
|
|
1431
|
+
Distinct(): Rewrap<this, System_Collections_Generic.IEnumerable_1<T>>;
|
|
1432
|
+
Distinct(comparer: System_Collections_Generic.IEqualityComparer_1<T>): Rewrap<this, System_Collections_Generic.IEnumerable_1<T>>;
|
|
1433
|
+
DistinctBy<TKey>(keySelector: System.Func_2<T, TKey>): Rewrap<this, System_Collections_Generic.IEnumerable_1<T>>;
|
|
1434
|
+
DistinctBy<TKey>(keySelector: System.Func_2<T, TKey>, comparer: System_Collections_Generic.IEqualityComparer_1<TKey>): Rewrap<this, System_Collections_Generic.IEnumerable_1<T>>;
|
|
1435
|
+
ElementAt(index: int): Rewrap<this, T>;
|
|
1436
|
+
ElementAt(index: System.Index): Rewrap<this, T>;
|
|
1437
|
+
ElementAtOrDefault(index: int): Rewrap<this, T | undefined>;
|
|
1438
|
+
ElementAtOrDefault(index: System.Index): Rewrap<this, T | undefined>;
|
|
1439
|
+
AsEnumerable(): Rewrap<this, System_Collections_Generic.IEnumerable_1<T>>;
|
|
1440
|
+
Except(second: System_Collections_Generic.IEnumerable_1<T>): Rewrap<this, System_Collections_Generic.IEnumerable_1<T>>;
|
|
1441
|
+
Except(second: System_Collections_Generic.IEnumerable_1<T>, comparer: System_Collections_Generic.IEqualityComparer_1<T>): Rewrap<this, System_Collections_Generic.IEnumerable_1<T>>;
|
|
1442
|
+
ExceptBy<TKey>(second: System_Collections_Generic.IEnumerable_1<TKey>, keySelector: System.Func_2<T, TKey>): Rewrap<this, System_Collections_Generic.IEnumerable_1<T>>;
|
|
1443
|
+
ExceptBy<TKey>(second: System_Collections_Generic.IEnumerable_1<TKey>, keySelector: System.Func_2<T, TKey>, comparer: System_Collections_Generic.IEqualityComparer_1<TKey>): Rewrap<this, System_Collections_Generic.IEnumerable_1<T>>;
|
|
1444
|
+
GroupBy<TKey>(keySelector: System.Func_2<T, TKey>): Rewrap<this, System_Collections_Generic.IEnumerable_1<System_Linq.IGrouping_2<TKey, T>>>;
|
|
1445
|
+
GroupBy<TKey>(keySelector: System.Func_2<T, TKey>, comparer: System_Collections_Generic.IEqualityComparer_1<TKey>): Rewrap<this, System_Collections_Generic.IEnumerable_1<System_Linq.IGrouping_2<TKey, T>>>;
|
|
1446
|
+
GroupBy<TKey, TElement>(keySelector: System.Func_2<T, TKey>, elementSelector: System.Func_2<T, TElement>): Rewrap<this, System_Collections_Generic.IEnumerable_1<System_Linq.IGrouping_2<TKey, TElement>>>;
|
|
1447
|
+
GroupBy<TKey, TElement>(keySelector: System.Func_2<T, TKey>, elementSelector: System.Func_2<T, TElement>, comparer: System_Collections_Generic.IEqualityComparer_1<TKey>): Rewrap<this, System_Collections_Generic.IEnumerable_1<System_Linq.IGrouping_2<TKey, TElement>>>;
|
|
1448
|
+
GroupBy<TKey, TResult>(keySelector: System.Func_2<T, TKey>, resultSelector: System.Func_3<TKey, System_Collections_Generic.IEnumerable_1<T>, TResult>): Rewrap<this, System_Collections_Generic.IEnumerable_1<TResult>>;
|
|
1449
|
+
GroupBy<TKey, TResult>(keySelector: System.Func_2<T, TKey>, resultSelector: System.Func_3<TKey, System_Collections_Generic.IEnumerable_1<T>, TResult>, comparer: System_Collections_Generic.IEqualityComparer_1<TKey>): Rewrap<this, System_Collections_Generic.IEnumerable_1<TResult>>;
|
|
1450
|
+
GroupBy<TKey, TElement, TResult>(keySelector: System.Func_2<T, TKey>, elementSelector: System.Func_2<T, TElement>, resultSelector: System.Func_3<TKey, System_Collections_Generic.IEnumerable_1<TElement>, TResult>): Rewrap<this, System_Collections_Generic.IEnumerable_1<TResult>>;
|
|
1451
|
+
GroupBy<TKey, TElement, TResult>(keySelector: System.Func_2<T, TKey>, elementSelector: System.Func_2<T, TElement>, resultSelector: System.Func_3<TKey, System_Collections_Generic.IEnumerable_1<TElement>, TResult>, comparer: System_Collections_Generic.IEqualityComparer_1<TKey>): Rewrap<this, System_Collections_Generic.IEnumerable_1<TResult>>;
|
|
1452
|
+
GroupJoin<TInner, TKey, TResult>(inner: System_Collections_Generic.IEnumerable_1<TInner>, outerKeySelector: System.Func_2<T, TKey>, innerKeySelector: System.Func_2<TInner, TKey>, resultSelector: System.Func_3<T, System_Collections_Generic.IEnumerable_1<TInner>, TResult>): Rewrap<this, System_Collections_Generic.IEnumerable_1<TResult>>;
|
|
1453
|
+
GroupJoin<TInner, TKey, TResult>(inner: System_Collections_Generic.IEnumerable_1<TInner>, outerKeySelector: System.Func_2<T, TKey>, innerKeySelector: System.Func_2<TInner, TKey>, resultSelector: System.Func_3<T, System_Collections_Generic.IEnumerable_1<TInner>, TResult>, comparer: System_Collections_Generic.IEqualityComparer_1<TKey>): Rewrap<this, System_Collections_Generic.IEnumerable_1<TResult>>;
|
|
1454
|
+
Index(): Rewrap<this, System_Collections_Generic.IEnumerable_1<System.ValueTuple_2<System_Internal.Int32, T>>>;
|
|
1455
|
+
Intersect(second: System_Collections_Generic.IEnumerable_1<T>): Rewrap<this, System_Collections_Generic.IEnumerable_1<T>>;
|
|
1456
|
+
Intersect(second: System_Collections_Generic.IEnumerable_1<T>, comparer: System_Collections_Generic.IEqualityComparer_1<T>): Rewrap<this, System_Collections_Generic.IEnumerable_1<T>>;
|
|
1457
|
+
IntersectBy<TKey>(second: System_Collections_Generic.IEnumerable_1<TKey>, keySelector: System.Func_2<T, TKey>): Rewrap<this, System_Collections_Generic.IEnumerable_1<T>>;
|
|
1458
|
+
IntersectBy<TKey>(second: System_Collections_Generic.IEnumerable_1<TKey>, keySelector: System.Func_2<T, TKey>, comparer: System_Collections_Generic.IEqualityComparer_1<TKey>): Rewrap<this, System_Collections_Generic.IEnumerable_1<T>>;
|
|
1459
|
+
Join<TInner, TKey, TResult>(inner: System_Collections_Generic.IEnumerable_1<TInner>, outerKeySelector: System.Func_2<T, TKey>, innerKeySelector: System.Func_2<TInner, TKey>, resultSelector: System.Func_3<T, TInner, TResult>): Rewrap<this, System_Collections_Generic.IEnumerable_1<TResult>>;
|
|
1460
|
+
Join<TInner, TKey, TResult>(inner: System_Collections_Generic.IEnumerable_1<TInner>, outerKeySelector: System.Func_2<T, TKey>, innerKeySelector: System.Func_2<TInner, TKey>, resultSelector: System.Func_3<T, TInner, TResult>, comparer: System_Collections_Generic.IEqualityComparer_1<TKey>): Rewrap<this, System_Collections_Generic.IEnumerable_1<TResult>>;
|
|
1461
|
+
LeftJoin<TInner, TKey, TResult>(inner: System_Collections_Generic.IEnumerable_1<TInner>, outerKeySelector: System.Func_2<T, TKey>, innerKeySelector: System.Func_2<TInner, TKey>, resultSelector: System.Func_3<T, TInner, TResult>): Rewrap<this, System_Collections_Generic.IEnumerable_1<TResult>>;
|
|
1462
|
+
LeftJoin<TInner, TKey, TResult>(inner: System_Collections_Generic.IEnumerable_1<TInner>, outerKeySelector: System.Func_2<T, TKey>, innerKeySelector: System.Func_2<TInner, TKey>, resultSelector: System.Func_3<T, TInner, TResult>, comparer: System_Collections_Generic.IEqualityComparer_1<TKey>): Rewrap<this, System_Collections_Generic.IEnumerable_1<TResult>>;
|
|
1463
|
+
ToLookup<TKey>(keySelector: System.Func_2<T, TKey>): Rewrap<this, System_Linq.ILookup_2<TKey, T>>;
|
|
1464
|
+
ToLookup<TKey>(keySelector: System.Func_2<T, TKey>, comparer: System_Collections_Generic.IEqualityComparer_1<TKey>): Rewrap<this, System_Linq.ILookup_2<TKey, T>>;
|
|
1465
|
+
ToLookup<TKey, TElement>(keySelector: System.Func_2<T, TKey>, elementSelector: System.Func_2<T, TElement>): Rewrap<this, System_Linq.ILookup_2<TKey, TElement>>;
|
|
1466
|
+
ToLookup<TKey, TElement>(keySelector: System.Func_2<T, TKey>, elementSelector: System.Func_2<T, TElement>, comparer: System_Collections_Generic.IEqualityComparer_1<TKey>): Rewrap<this, System_Linq.ILookup_2<TKey, TElement>>;
|
|
1467
|
+
Max(): Rewrap<this, int>;
|
|
1468
|
+
Max(): Rewrap<this, long>;
|
|
1469
|
+
Max(): Rewrap<this, System.Nullable_1<System_Internal.Int32>>;
|
|
1470
|
+
Max(): Rewrap<this, System.Nullable_1<System_Internal.Int64>>;
|
|
1471
|
+
Max(): Rewrap<this, double>;
|
|
1472
|
+
Max(): Rewrap<this, System.Nullable_1<System_Internal.Double>>;
|
|
1473
|
+
Max(): Rewrap<this, float>;
|
|
1474
|
+
Max(): Rewrap<this, System.Nullable_1<System_Internal.Single>>;
|
|
1475
|
+
Max(): Rewrap<this, decimal>;
|
|
1476
|
+
Max(): Rewrap<this, System.Nullable_1<System_Internal.Decimal>>;
|
|
1477
|
+
Max(): Rewrap<this, T | undefined>;
|
|
1478
|
+
Max(comparer: System_Collections_Generic.IComparer_1<T>): Rewrap<this, T | undefined>;
|
|
1479
|
+
MaxBy<TKey>(keySelector: System.Func_2<T, TKey>): Rewrap<this, T | undefined>;
|
|
1480
|
+
MaxBy<TKey>(keySelector: System.Func_2<T, TKey>, comparer: System_Collections_Generic.IComparer_1<TKey>): Rewrap<this, T | undefined>;
|
|
1481
|
+
Max(selector: System.Func_2<T, System_Internal.Int32>): Rewrap<this, int>;
|
|
1482
|
+
Max(selector: System.Func_2<T, System.Nullable_1<System_Internal.Int32>>): Rewrap<this, System.Nullable_1<System_Internal.Int32>>;
|
|
1483
|
+
Max(selector: System.Func_2<T, System_Internal.Int64>): Rewrap<this, long>;
|
|
1484
|
+
Max(selector: System.Func_2<T, System.Nullable_1<System_Internal.Int64>>): Rewrap<this, System.Nullable_1<System_Internal.Int64>>;
|
|
1485
|
+
Max(selector: System.Func_2<T, System_Internal.Single>): Rewrap<this, float>;
|
|
1486
|
+
Max(selector: System.Func_2<T, System.Nullable_1<System_Internal.Single>>): Rewrap<this, System.Nullable_1<System_Internal.Single>>;
|
|
1487
|
+
Max(selector: System.Func_2<T, System_Internal.Double>): Rewrap<this, double>;
|
|
1488
|
+
Max(selector: System.Func_2<T, System.Nullable_1<System_Internal.Double>>): Rewrap<this, System.Nullable_1<System_Internal.Double>>;
|
|
1489
|
+
Max(selector: System.Func_2<T, System_Internal.Decimal>): Rewrap<this, decimal>;
|
|
1490
|
+
Max(selector: System.Func_2<T, System.Nullable_1<System_Internal.Decimal>>): Rewrap<this, System.Nullable_1<System_Internal.Decimal>>;
|
|
1491
|
+
Max<TResult>(selector: System.Func_2<T, TResult>): Rewrap<this, TResult | undefined>;
|
|
1492
|
+
Min(): Rewrap<this, int>;
|
|
1493
|
+
Min(): Rewrap<this, long>;
|
|
1494
|
+
Min(): Rewrap<this, System.Nullable_1<System_Internal.Int32>>;
|
|
1495
|
+
Min(): Rewrap<this, System.Nullable_1<System_Internal.Int64>>;
|
|
1496
|
+
Min(): Rewrap<this, float>;
|
|
1497
|
+
Min(): Rewrap<this, System.Nullable_1<System_Internal.Single>>;
|
|
1498
|
+
Min(): Rewrap<this, double>;
|
|
1499
|
+
Min(): Rewrap<this, System.Nullable_1<System_Internal.Double>>;
|
|
1500
|
+
Min(): Rewrap<this, decimal>;
|
|
1501
|
+
Min(): Rewrap<this, System.Nullable_1<System_Internal.Decimal>>;
|
|
1502
|
+
Min(): Rewrap<this, T | undefined>;
|
|
1503
|
+
Min(comparer: System_Collections_Generic.IComparer_1<T>): Rewrap<this, T | undefined>;
|
|
1504
|
+
MinBy<TKey>(keySelector: System.Func_2<T, TKey>): Rewrap<this, T | undefined>;
|
|
1505
|
+
MinBy<TKey>(keySelector: System.Func_2<T, TKey>, comparer: System_Collections_Generic.IComparer_1<TKey>): Rewrap<this, T | undefined>;
|
|
1506
|
+
Min(selector: System.Func_2<T, System_Internal.Int32>): Rewrap<this, int>;
|
|
1507
|
+
Min(selector: System.Func_2<T, System.Nullable_1<System_Internal.Int32>>): Rewrap<this, System.Nullable_1<System_Internal.Int32>>;
|
|
1508
|
+
Min(selector: System.Func_2<T, System_Internal.Int64>): Rewrap<this, long>;
|
|
1509
|
+
Min(selector: System.Func_2<T, System.Nullable_1<System_Internal.Int64>>): Rewrap<this, System.Nullable_1<System_Internal.Int64>>;
|
|
1510
|
+
Min(selector: System.Func_2<T, System_Internal.Single>): Rewrap<this, float>;
|
|
1511
|
+
Min(selector: System.Func_2<T, System.Nullable_1<System_Internal.Single>>): Rewrap<this, System.Nullable_1<System_Internal.Single>>;
|
|
1512
|
+
Min(selector: System.Func_2<T, System_Internal.Double>): Rewrap<this, double>;
|
|
1513
|
+
Min(selector: System.Func_2<T, System.Nullable_1<System_Internal.Double>>): Rewrap<this, System.Nullable_1<System_Internal.Double>>;
|
|
1514
|
+
Min(selector: System.Func_2<T, System_Internal.Decimal>): Rewrap<this, decimal>;
|
|
1515
|
+
Min(selector: System.Func_2<T, System.Nullable_1<System_Internal.Decimal>>): Rewrap<this, System.Nullable_1<System_Internal.Decimal>>;
|
|
1516
|
+
Min<TResult>(selector: System.Func_2<T, TResult>): Rewrap<this, TResult | undefined>;
|
|
1517
|
+
Order(): Rewrap<this, System_Linq.IOrderedEnumerable_1<T>>;
|
|
1518
|
+
Order(comparer: System_Collections_Generic.IComparer_1<T>): Rewrap<this, System_Linq.IOrderedEnumerable_1<T>>;
|
|
1519
|
+
OrderBy<TKey>(keySelector: System.Func_2<T, TKey>): Rewrap<this, System_Linq.IOrderedEnumerable_1<T>>;
|
|
1520
|
+
OrderBy<TKey>(keySelector: System.Func_2<T, TKey>, comparer: System_Collections_Generic.IComparer_1<TKey>): Rewrap<this, System_Linq.IOrderedEnumerable_1<T>>;
|
|
1521
|
+
OrderDescending(): Rewrap<this, System_Linq.IOrderedEnumerable_1<T>>;
|
|
1522
|
+
OrderDescending(comparer: System_Collections_Generic.IComparer_1<T>): Rewrap<this, System_Linq.IOrderedEnumerable_1<T>>;
|
|
1523
|
+
OrderByDescending<TKey>(keySelector: System.Func_2<T, TKey>): Rewrap<this, System_Linq.IOrderedEnumerable_1<T>>;
|
|
1524
|
+
OrderByDescending<TKey>(keySelector: System.Func_2<T, TKey>, comparer: System_Collections_Generic.IComparer_1<TKey>): Rewrap<this, System_Linq.IOrderedEnumerable_1<T>>;
|
|
1525
|
+
Shuffle(): Rewrap<this, System_Collections_Generic.IEnumerable_1<T>>;
|
|
1526
|
+
Reverse(): Rewrap<this, System_Collections_Generic.IEnumerable_1<T>>;
|
|
1527
|
+
RightJoin<TInner, TKey, TResult>(inner: System_Collections_Generic.IEnumerable_1<TInner>, outerKeySelector: System.Func_2<T, TKey>, innerKeySelector: System.Func_2<TInner, TKey>, resultSelector: System.Func_3<T, TInner, TResult>): Rewrap<this, System_Collections_Generic.IEnumerable_1<TResult>>;
|
|
1528
|
+
RightJoin<TInner, TKey, TResult>(inner: System_Collections_Generic.IEnumerable_1<TInner>, outerKeySelector: System.Func_2<T, TKey>, innerKeySelector: System.Func_2<TInner, TKey>, resultSelector: System.Func_3<T, TInner, TResult>, comparer: System_Collections_Generic.IEqualityComparer_1<TKey>): Rewrap<this, System_Collections_Generic.IEnumerable_1<TResult>>;
|
|
1529
|
+
Select<TResult>(selector: System.Func_2<T, TResult>): Rewrap<this, System_Collections_Generic.IEnumerable_1<TResult>>;
|
|
1530
|
+
Select<TResult>(selector: System.Func_3<T, System_Internal.Int32, TResult>): Rewrap<this, System_Collections_Generic.IEnumerable_1<TResult>>;
|
|
1531
|
+
SelectMany<TResult>(selector: System.Func_2<T, System_Collections_Generic.IEnumerable_1<TResult>>): Rewrap<this, System_Collections_Generic.IEnumerable_1<TResult>>;
|
|
1532
|
+
SelectMany<TResult>(selector: System.Func_3<T, System_Internal.Int32, System_Collections_Generic.IEnumerable_1<TResult>>): Rewrap<this, System_Collections_Generic.IEnumerable_1<TResult>>;
|
|
1533
|
+
SelectMany<TCollection, TResult>(collectionSelector: System.Func_3<T, System_Internal.Int32, System_Collections_Generic.IEnumerable_1<TCollection>>, resultSelector: System.Func_3<T, TCollection, TResult>): Rewrap<this, System_Collections_Generic.IEnumerable_1<TResult>>;
|
|
1534
|
+
SelectMany<TCollection, TResult>(collectionSelector: System.Func_2<T, System_Collections_Generic.IEnumerable_1<TCollection>>, resultSelector: System.Func_3<T, TCollection, TResult>): Rewrap<this, System_Collections_Generic.IEnumerable_1<TResult>>;
|
|
1535
|
+
SequenceEqual(second: System_Collections_Generic.IEnumerable_1<T>): Rewrap<this, boolean>;
|
|
1536
|
+
SequenceEqual(second: System_Collections_Generic.IEnumerable_1<T>, comparer: System_Collections_Generic.IEqualityComparer_1<T>): Rewrap<this, boolean>;
|
|
1537
|
+
Single(): Rewrap<this, T>;
|
|
1538
|
+
Single(predicate: System.Func_2<T, System_Internal.Boolean>): Rewrap<this, T>;
|
|
1539
|
+
SingleOrDefault(): Rewrap<this, T | undefined>;
|
|
1540
|
+
SingleOrDefault(defaultValue: T): Rewrap<this, T>;
|
|
1541
|
+
SingleOrDefault(predicate: System.Func_2<T, System_Internal.Boolean>): Rewrap<this, T | undefined>;
|
|
1542
|
+
SingleOrDefault(predicate: System.Func_2<T, System_Internal.Boolean>, defaultValue: T): Rewrap<this, T>;
|
|
1543
|
+
Skip(count: int): Rewrap<this, System_Collections_Generic.IEnumerable_1<T>>;
|
|
1544
|
+
SkipWhile(predicate: System.Func_2<T, System_Internal.Boolean>): Rewrap<this, System_Collections_Generic.IEnumerable_1<T>>;
|
|
1545
|
+
SkipWhile(predicate: System.Func_3<T, System_Internal.Int32, System_Internal.Boolean>): Rewrap<this, System_Collections_Generic.IEnumerable_1<T>>;
|
|
1546
|
+
SkipLast(count: int): Rewrap<this, System_Collections_Generic.IEnumerable_1<T>>;
|
|
1547
|
+
Sum(): Rewrap<this, int>;
|
|
1548
|
+
Sum(): Rewrap<this, long>;
|
|
1549
|
+
Sum(): Rewrap<this, float>;
|
|
1550
|
+
Sum(): Rewrap<this, double>;
|
|
1551
|
+
Sum(): Rewrap<this, decimal>;
|
|
1552
|
+
Sum(): Rewrap<this, System.Nullable_1<System_Internal.Int32>>;
|
|
1553
|
+
Sum(): Rewrap<this, System.Nullable_1<System_Internal.Int64>>;
|
|
1554
|
+
Sum(): Rewrap<this, System.Nullable_1<System_Internal.Single>>;
|
|
1555
|
+
Sum(): Rewrap<this, System.Nullable_1<System_Internal.Double>>;
|
|
1556
|
+
Sum(): Rewrap<this, System.Nullable_1<System_Internal.Decimal>>;
|
|
1557
|
+
Sum(selector: System.Func_2<T, System_Internal.Int32>): Rewrap<this, int>;
|
|
1558
|
+
Sum(selector: System.Func_2<T, System_Internal.Int64>): Rewrap<this, long>;
|
|
1559
|
+
Sum(selector: System.Func_2<T, System_Internal.Single>): Rewrap<this, float>;
|
|
1560
|
+
Sum(selector: System.Func_2<T, System_Internal.Double>): Rewrap<this, double>;
|
|
1561
|
+
Sum(selector: System.Func_2<T, System_Internal.Decimal>): Rewrap<this, decimal>;
|
|
1562
|
+
Sum(selector: System.Func_2<T, System.Nullable_1<System_Internal.Int32>>): Rewrap<this, System.Nullable_1<System_Internal.Int32>>;
|
|
1563
|
+
Sum(selector: System.Func_2<T, System.Nullable_1<System_Internal.Int64>>): Rewrap<this, System.Nullable_1<System_Internal.Int64>>;
|
|
1564
|
+
Sum(selector: System.Func_2<T, System.Nullable_1<System_Internal.Single>>): Rewrap<this, System.Nullable_1<System_Internal.Single>>;
|
|
1565
|
+
Sum(selector: System.Func_2<T, System.Nullable_1<System_Internal.Double>>): Rewrap<this, System.Nullable_1<System_Internal.Double>>;
|
|
1566
|
+
Sum(selector: System.Func_2<T, System.Nullable_1<System_Internal.Decimal>>): Rewrap<this, System.Nullable_1<System_Internal.Decimal>>;
|
|
1567
|
+
Take(count: int): Rewrap<this, System_Collections_Generic.IEnumerable_1<T>>;
|
|
1568
|
+
Take(range: System.Range): Rewrap<this, System_Collections_Generic.IEnumerable_1<T>>;
|
|
1569
|
+
TakeWhile(predicate: System.Func_2<T, System_Internal.Boolean>): Rewrap<this, System_Collections_Generic.IEnumerable_1<T>>;
|
|
1570
|
+
TakeWhile(predicate: System.Func_3<T, System_Internal.Int32, System_Internal.Boolean>): Rewrap<this, System_Collections_Generic.IEnumerable_1<T>>;
|
|
1571
|
+
TakeLast(count: int): Rewrap<this, System_Collections_Generic.IEnumerable_1<T>>;
|
|
1572
|
+
ToArray(): Rewrap<this, T[]>;
|
|
1573
|
+
ToList(): Rewrap<this, System_Collections_Generic.List_1<T>>;
|
|
1574
|
+
ToDictionary<TKey, TValue>(): Rewrap<this, System_Collections_Generic.Dictionary_2<TKey, TValue>>;
|
|
1575
|
+
ToDictionary<TKey, TValue>(comparer: System_Collections_Generic.IEqualityComparer_1<TKey>): Rewrap<this, System_Collections_Generic.Dictionary_2<TKey, TValue>>;
|
|
1576
|
+
ToDictionary<TKey>(keySelector: System.Func_2<T, TKey>): Rewrap<this, System_Collections_Generic.Dictionary_2<TKey, T>>;
|
|
1577
|
+
ToDictionary<TKey>(keySelector: System.Func_2<T, TKey>, comparer: System_Collections_Generic.IEqualityComparer_1<TKey>): Rewrap<this, System_Collections_Generic.Dictionary_2<TKey, T>>;
|
|
1578
|
+
ToDictionary<TKey, TElement>(keySelector: System.Func_2<T, TKey>, elementSelector: System.Func_2<T, TElement>): Rewrap<this, System_Collections_Generic.Dictionary_2<TKey, TElement>>;
|
|
1579
|
+
ToDictionary<TKey, TElement>(keySelector: System.Func_2<T, TKey>, elementSelector: System.Func_2<T, TElement>, comparer: System_Collections_Generic.IEqualityComparer_1<TKey>): Rewrap<this, System_Collections_Generic.Dictionary_2<TKey, TElement>>;
|
|
1580
|
+
ToHashSet(): Rewrap<this, System_Collections_Generic.HashSet_1<T>>;
|
|
1581
|
+
ToHashSet(comparer: System_Collections_Generic.IEqualityComparer_1<T>): Rewrap<this, System_Collections_Generic.HashSet_1<T>>;
|
|
1582
|
+
Union(second: System_Collections_Generic.IEnumerable_1<T>): Rewrap<this, System_Collections_Generic.IEnumerable_1<T>>;
|
|
1583
|
+
Union(second: System_Collections_Generic.IEnumerable_1<T>, comparer: System_Collections_Generic.IEqualityComparer_1<T>): Rewrap<this, System_Collections_Generic.IEnumerable_1<T>>;
|
|
1584
|
+
UnionBy<TKey>(second: System_Collections_Generic.IEnumerable_1<T>, keySelector: System.Func_2<T, TKey>): Rewrap<this, System_Collections_Generic.IEnumerable_1<T>>;
|
|
1585
|
+
UnionBy<TKey>(second: System_Collections_Generic.IEnumerable_1<T>, keySelector: System.Func_2<T, TKey>, comparer: System_Collections_Generic.IEqualityComparer_1<TKey>): Rewrap<this, System_Collections_Generic.IEnumerable_1<T>>;
|
|
1586
|
+
Where(predicate: System.Func_2<T, System_Internal.Boolean>): Rewrap<this, System_Collections_Generic.IEnumerable_1<T>>;
|
|
1587
|
+
Where(predicate: System.Func_3<T, System_Internal.Int32, System_Internal.Boolean>): Rewrap<this, System_Collections_Generic.IEnumerable_1<T>>;
|
|
1588
|
+
Zip<TSecond, TResult>(second: System_Collections_Generic.IEnumerable_1<TSecond>, resultSelector: System.Func_3<T, TSecond, TResult>): Rewrap<this, System_Collections_Generic.IEnumerable_1<TResult>>;
|
|
1589
|
+
Zip<TSecond>(second: System_Collections_Generic.IEnumerable_1<TSecond>): Rewrap<this, System_Collections_Generic.IEnumerable_1<System.ValueTuple_2<T, TSecond>>>;
|
|
1590
|
+
Zip<TSecond, TThird>(second: System_Collections_Generic.IEnumerable_1<TSecond>, third: System_Collections_Generic.IEnumerable_1<TThird>): Rewrap<this, System_Collections_Generic.IEnumerable_1<System.ValueTuple_3<T, TSecond, TThird>>>;
|
|
1591
|
+
ToAsyncEnumerable(): Rewrap<this, System_Collections_Generic.IAsyncEnumerable_1<T>>;
|
|
1592
|
+
AsParallel(): Rewrap<this, System_Linq.ParallelQuery_1<T>>;
|
|
1593
|
+
AsQueryable(): Rewrap<this, System_Linq.IQueryable_1<T>>;
|
|
1146
1594
|
First(): Rewrap<this, T>;
|
|
1147
1595
|
FirstOrDefault(): Rewrap<this, T | undefined>;
|
|
1148
1596
|
Last(): Rewrap<this, T>;
|
|
@@ -1172,11 +1620,34 @@ export interface __Ext_System_Linq_IOrderedQueryable_1<T> {
|
|
|
1172
1620
|
}
|
|
1173
1621
|
|
|
1174
1622
|
export interface __Ext_System_Linq_IQueryable {
|
|
1623
|
+
AsParallel(): Rewrap<this, System_Linq.ParallelQuery>;
|
|
1624
|
+
AsQueryable(): Rewrap<this, System_Linq.IQueryable>;
|
|
1175
1625
|
OfType<TResult>(): Rewrap<this, System_Linq.IQueryable_1<TResult>>;
|
|
1176
1626
|
Cast<TResult>(): Rewrap<this, System_Linq.IQueryable_1<TResult>>;
|
|
1177
1627
|
}
|
|
1178
1628
|
|
|
1179
1629
|
export interface __Ext_System_Linq_IQueryable_1<T> {
|
|
1630
|
+
Cast<TResult>(): Rewrap<this, System_Collections_Generic.IEnumerable_1<TResult>>;
|
|
1631
|
+
OfType<TResult>(): Rewrap<this, System_Collections_Generic.IEnumerable_1<TResult>>;
|
|
1632
|
+
TryGetNonEnumeratedCount(count: int): Rewrap<this, boolean>;
|
|
1633
|
+
AsEnumerable(): Rewrap<this, System_Collections_Generic.IEnumerable_1<T>>;
|
|
1634
|
+
ToLookup<TKey>(keySelector: System.Func_2<T, TKey>): Rewrap<this, System_Linq.ILookup_2<TKey, T>>;
|
|
1635
|
+
ToLookup<TKey>(keySelector: System.Func_2<T, TKey>, comparer: System_Collections_Generic.IEqualityComparer_1<TKey>): Rewrap<this, System_Linq.ILookup_2<TKey, T>>;
|
|
1636
|
+
ToLookup<TKey, TElement>(keySelector: System.Func_2<T, TKey>, elementSelector: System.Func_2<T, TElement>): Rewrap<this, System_Linq.ILookup_2<TKey, TElement>>;
|
|
1637
|
+
ToLookup<TKey, TElement>(keySelector: System.Func_2<T, TKey>, elementSelector: System.Func_2<T, TElement>, comparer: System_Collections_Generic.IEqualityComparer_1<TKey>): Rewrap<this, System_Linq.ILookup_2<TKey, TElement>>;
|
|
1638
|
+
ToArray(): Rewrap<this, T[]>;
|
|
1639
|
+
ToList(): Rewrap<this, System_Collections_Generic.List_1<T>>;
|
|
1640
|
+
ToDictionary<TKey, TValue>(): Rewrap<this, System_Collections_Generic.Dictionary_2<TKey, TValue>>;
|
|
1641
|
+
ToDictionary<TKey, TValue>(comparer: System_Collections_Generic.IEqualityComparer_1<TKey>): Rewrap<this, System_Collections_Generic.Dictionary_2<TKey, TValue>>;
|
|
1642
|
+
ToDictionary<TKey>(keySelector: System.Func_2<T, TKey>): Rewrap<this, System_Collections_Generic.Dictionary_2<TKey, T>>;
|
|
1643
|
+
ToDictionary<TKey>(keySelector: System.Func_2<T, TKey>, comparer: System_Collections_Generic.IEqualityComparer_1<TKey>): Rewrap<this, System_Collections_Generic.Dictionary_2<TKey, T>>;
|
|
1644
|
+
ToDictionary<TKey, TElement>(keySelector: System.Func_2<T, TKey>, elementSelector: System.Func_2<T, TElement>): Rewrap<this, System_Collections_Generic.Dictionary_2<TKey, TElement>>;
|
|
1645
|
+
ToDictionary<TKey, TElement>(keySelector: System.Func_2<T, TKey>, elementSelector: System.Func_2<T, TElement>, comparer: System_Collections_Generic.IEqualityComparer_1<TKey>): Rewrap<this, System_Collections_Generic.Dictionary_2<TKey, TElement>>;
|
|
1646
|
+
ToHashSet(): Rewrap<this, System_Collections_Generic.HashSet_1<T>>;
|
|
1647
|
+
ToHashSet(comparer: System_Collections_Generic.IEqualityComparer_1<T>): Rewrap<this, System_Collections_Generic.HashSet_1<T>>;
|
|
1648
|
+
ToAsyncEnumerable(): Rewrap<this, System_Collections_Generic.IAsyncEnumerable_1<T>>;
|
|
1649
|
+
AsParallel(): Rewrap<this, System_Linq.ParallelQuery_1<T>>;
|
|
1650
|
+
AsQueryable(): Rewrap<this, System_Linq.IQueryable_1<T>>;
|
|
1180
1651
|
Where(predicate: System_Linq_Expressions.Expression_1<System.Func_2<T, System_Internal.Boolean>>): Rewrap<this, System_Linq.IQueryable_1<T>>;
|
|
1181
1652
|
Select<TResult>(selector: System_Linq_Expressions.Expression_1<System.Func_2<T, TResult>>): Rewrap<this, System_Linq.IQueryable_1<TResult>>;
|
|
1182
1653
|
SelectMany<TResult>(selector: System_Linq_Expressions.Expression_1<System.Func_2<T, System_Collections_Generic.IEnumerable_1<TResult>>>): Rewrap<this, System_Linq.IQueryable_1<TResult>>;
|
|
@@ -1333,12 +1804,52 @@ export interface __Ext_System_Linq_OrderedParallelQuery_1<TSource> {
|
|
|
1333
1804
|
}
|
|
1334
1805
|
|
|
1335
1806
|
export interface __Ext_System_Linq_ParallelQuery {
|
|
1807
|
+
AsParallel(): Rewrap<this, System_Linq.ParallelQuery>;
|
|
1808
|
+
AsQueryable(): Rewrap<this, System_Linq.IQueryable>;
|
|
1336
1809
|
AsOrdered(): Rewrap<this, System_Linq.ParallelQuery>;
|
|
1337
1810
|
OfType<TResult>(): Rewrap<this, System_Linq.ParallelQuery_1<TResult>>;
|
|
1338
1811
|
Cast<TResult>(): Rewrap<this, System_Linq.ParallelQuery_1<TResult>>;
|
|
1339
1812
|
}
|
|
1340
1813
|
|
|
1341
1814
|
export interface __Ext_System_Linq_ParallelQuery_1<TSource> {
|
|
1815
|
+
Cast<TResult>(): Rewrap<this, System_Collections_Generic.IEnumerable_1<TResult>>;
|
|
1816
|
+
OfType<TResult>(): Rewrap<this, System_Collections_Generic.IEnumerable_1<TResult>>;
|
|
1817
|
+
Append(element: TSource): Rewrap<this, System_Collections_Generic.IEnumerable_1<TSource>>;
|
|
1818
|
+
Prepend(element: TSource): Rewrap<this, System_Collections_Generic.IEnumerable_1<TSource>>;
|
|
1819
|
+
Chunk(size: int): Rewrap<this, System_Collections_Generic.IEnumerable_1<TSource[]>>;
|
|
1820
|
+
AggregateBy<TKey, TAccumulate>(keySelector: System.Func_2<TSource, TKey>, seed: TAccumulate, func: System.Func_3<TAccumulate, TSource, TAccumulate>, keyComparer?: System_Collections_Generic.IEqualityComparer_1<TKey>): Rewrap<this, System_Collections_Generic.IEnumerable_1<System_Collections_Generic.KeyValuePair_2<TKey, TAccumulate>>>;
|
|
1821
|
+
AggregateBy<TKey, TAccumulate>(keySelector: System.Func_2<TSource, TKey>, seedSelector: System.Func_2<TKey, TAccumulate>, func: System.Func_3<TAccumulate, TSource, TAccumulate>, keyComparer?: System_Collections_Generic.IEqualityComparer_1<TKey>): Rewrap<this, System_Collections_Generic.IEnumerable_1<System_Collections_Generic.KeyValuePair_2<TKey, TAccumulate>>>;
|
|
1822
|
+
CountBy<TKey>(keySelector: System.Func_2<TSource, TKey>, keyComparer?: System_Collections_Generic.IEqualityComparer_1<TKey>): Rewrap<this, System_Collections_Generic.IEnumerable_1<System_Collections_Generic.KeyValuePair_2<TKey, System_Internal.Int32>>>;
|
|
1823
|
+
TryGetNonEnumeratedCount(count: int): Rewrap<this, boolean>;
|
|
1824
|
+
DistinctBy<TKey>(keySelector: System.Func_2<TSource, TKey>): Rewrap<this, System_Collections_Generic.IEnumerable_1<TSource>>;
|
|
1825
|
+
DistinctBy<TKey>(keySelector: System.Func_2<TSource, TKey>, comparer: System_Collections_Generic.IEqualityComparer_1<TKey>): Rewrap<this, System_Collections_Generic.IEnumerable_1<TSource>>;
|
|
1826
|
+
ExceptBy<TKey>(second: System_Collections_Generic.IEnumerable_1<TKey>, keySelector: System.Func_2<TSource, TKey>): Rewrap<this, System_Collections_Generic.IEnumerable_1<TSource>>;
|
|
1827
|
+
ExceptBy<TKey>(second: System_Collections_Generic.IEnumerable_1<TKey>, keySelector: System.Func_2<TSource, TKey>, comparer: System_Collections_Generic.IEqualityComparer_1<TKey>): Rewrap<this, System_Collections_Generic.IEnumerable_1<TSource>>;
|
|
1828
|
+
Index(): Rewrap<this, System_Collections_Generic.IEnumerable_1<System.ValueTuple_2<System_Internal.Int32, TSource>>>;
|
|
1829
|
+
IntersectBy<TKey>(second: System_Collections_Generic.IEnumerable_1<TKey>, keySelector: System.Func_2<TSource, TKey>): Rewrap<this, System_Collections_Generic.IEnumerable_1<TSource>>;
|
|
1830
|
+
IntersectBy<TKey>(second: System_Collections_Generic.IEnumerable_1<TKey>, keySelector: System.Func_2<TSource, TKey>, comparer: System_Collections_Generic.IEqualityComparer_1<TKey>): Rewrap<this, System_Collections_Generic.IEnumerable_1<TSource>>;
|
|
1831
|
+
LeftJoin<TInner, TKey, TResult>(inner: System_Collections_Generic.IEnumerable_1<TInner>, outerKeySelector: System.Func_2<TSource, TKey>, innerKeySelector: System.Func_2<TInner, TKey>, resultSelector: System.Func_3<TSource, TInner, TResult>): Rewrap<this, System_Collections_Generic.IEnumerable_1<TResult>>;
|
|
1832
|
+
LeftJoin<TInner, TKey, TResult>(inner: System_Collections_Generic.IEnumerable_1<TInner>, outerKeySelector: System.Func_2<TSource, TKey>, innerKeySelector: System.Func_2<TInner, TKey>, resultSelector: System.Func_3<TSource, TInner, TResult>, comparer: System_Collections_Generic.IEqualityComparer_1<TKey>): Rewrap<this, System_Collections_Generic.IEnumerable_1<TResult>>;
|
|
1833
|
+
MaxBy<TKey>(keySelector: System.Func_2<TSource, TKey>): Rewrap<this, TSource | undefined>;
|
|
1834
|
+
MaxBy<TKey>(keySelector: System.Func_2<TSource, TKey>, comparer: System_Collections_Generic.IComparer_1<TKey>): Rewrap<this, TSource | undefined>;
|
|
1835
|
+
MinBy<TKey>(keySelector: System.Func_2<TSource, TKey>): Rewrap<this, TSource | undefined>;
|
|
1836
|
+
MinBy<TKey>(keySelector: System.Func_2<TSource, TKey>, comparer: System_Collections_Generic.IComparer_1<TKey>): Rewrap<this, TSource | undefined>;
|
|
1837
|
+
Order(): Rewrap<this, System_Linq.IOrderedEnumerable_1<TSource>>;
|
|
1838
|
+
Order(comparer: System_Collections_Generic.IComparer_1<TSource>): Rewrap<this, System_Linq.IOrderedEnumerable_1<TSource>>;
|
|
1839
|
+
OrderDescending(): Rewrap<this, System_Linq.IOrderedEnumerable_1<TSource>>;
|
|
1840
|
+
OrderDescending(comparer: System_Collections_Generic.IComparer_1<TSource>): Rewrap<this, System_Linq.IOrderedEnumerable_1<TSource>>;
|
|
1841
|
+
Shuffle(): Rewrap<this, System_Collections_Generic.IEnumerable_1<TSource>>;
|
|
1842
|
+
RightJoin<TInner, TKey, TResult>(inner: System_Collections_Generic.IEnumerable_1<TInner>, outerKeySelector: System.Func_2<TSource, TKey>, innerKeySelector: System.Func_2<TInner, TKey>, resultSelector: System.Func_3<TSource, TInner, TResult>): Rewrap<this, System_Collections_Generic.IEnumerable_1<TResult>>;
|
|
1843
|
+
RightJoin<TInner, TKey, TResult>(inner: System_Collections_Generic.IEnumerable_1<TInner>, outerKeySelector: System.Func_2<TSource, TKey>, innerKeySelector: System.Func_2<TInner, TKey>, resultSelector: System.Func_3<TSource, TInner, TResult>, comparer: System_Collections_Generic.IEqualityComparer_1<TKey>): Rewrap<this, System_Collections_Generic.IEnumerable_1<TResult>>;
|
|
1844
|
+
SkipLast(count: int): Rewrap<this, System_Collections_Generic.IEnumerable_1<TSource>>;
|
|
1845
|
+
TakeLast(count: int): Rewrap<this, System_Collections_Generic.IEnumerable_1<TSource>>;
|
|
1846
|
+
ToHashSet(): Rewrap<this, System_Collections_Generic.HashSet_1<TSource>>;
|
|
1847
|
+
ToHashSet(comparer: System_Collections_Generic.IEqualityComparer_1<TSource>): Rewrap<this, System_Collections_Generic.HashSet_1<TSource>>;
|
|
1848
|
+
UnionBy<TKey>(second: System_Collections_Generic.IEnumerable_1<TSource>, keySelector: System.Func_2<TSource, TKey>): Rewrap<this, System_Collections_Generic.IEnumerable_1<TSource>>;
|
|
1849
|
+
UnionBy<TKey>(second: System_Collections_Generic.IEnumerable_1<TSource>, keySelector: System.Func_2<TSource, TKey>, comparer: System_Collections_Generic.IEqualityComparer_1<TKey>): Rewrap<this, System_Collections_Generic.IEnumerable_1<TSource>>;
|
|
1850
|
+
ToAsyncEnumerable(): Rewrap<this, System_Collections_Generic.IAsyncEnumerable_1<TSource>>;
|
|
1851
|
+
AsParallel(): Rewrap<this, System_Linq.ParallelQuery_1<TSource>>;
|
|
1852
|
+
AsQueryable(): Rewrap<this, System_Linq.IQueryable_1<TSource>>;
|
|
1342
1853
|
AsOrdered(): Rewrap<this, System_Linq.ParallelQuery_1<TSource>>;
|
|
1343
1854
|
AsUnordered(): Rewrap<this, System_Linq.ParallelQuery_1<TSource>>;
|
|
1344
1855
|
AsSequential(): Rewrap<this, System_Collections_Generic.IEnumerable_1<TSource>>;
|
|
@@ -2222,9 +2733,8 @@ export interface __Ext_System_Xml_XPath_XNode {
|
|
|
2222
2733
|
|
|
2223
2734
|
// Internal helper types for sticky extension scopes
|
|
2224
2735
|
type __TsonicExtMapOf<T> = T extends { __tsonic_ext?: infer M } ? M : {};
|
|
2225
|
-
type __TsonicMergeExtMaps<A, B> =
|
|
2736
|
+
type __TsonicMergeExtMaps<A, B> = A & B;
|
|
2226
2737
|
type __TsonicWithExt<TShape, K extends string, TApplier> = { __tsonic_ext?: __TsonicMergeExtMaps<__TsonicExtMapOf<TShape>, { [P in K]: TApplier }> };
|
|
2227
|
-
type __TsonicPreferExt<A, B> = Omit<A, keyof B> & B;
|
|
2228
2738
|
|
|
2229
2739
|
// Generic helper type for extension methods in namespace: System
|
|
2230
2740
|
type __TsonicExtSurface_System<TShape> =
|
|
@@ -2293,7 +2803,7 @@ export type ExtensionMethods_System_Collections_Generic<TShape> =
|
|
|
2293
2803
|
// Generic helper type for extension methods in namespace: System.Collections.Immutable
|
|
2294
2804
|
type __TsonicExtSurface_System_Collections_Immutable<TShape> =
|
|
2295
2805
|
(
|
|
2296
|
-
(TShape extends System.ReadOnlySpan_1<infer T0> ? __Ext_System_Collections_Immutable_ReadOnlySpan_1<T0> : {}) & (TShape extends System.Span_1<infer T0> ? __Ext_System_Collections_Immutable_Span_1<T0> : {}) & (TShape extends System_Collections_Generic.IEnumerable_1<infer T0> ? (TShape extends System_Collections_Immutable.ImmutableArray_1_Builder<infer _0> ? {} : (TShape extends System_Collections_Immutable.ImmutableHashSet_1_Builder<infer _0> ? {} : (TShape extends System_Collections_Immutable.ImmutableList_1_Builder<infer _0> ? {} : (TShape extends System_Collections_Immutable.ImmutableSortedSet_1_Builder<infer _0> ? {} : __Ext_System_Collections_Immutable_IEnumerable_1<T0>)))) : {}) & (TShape extends System_Collections_Immutable.IImmutableDictionary_2<infer T0, infer T1> ? __Ext_System_Collections_Immutable_IImmutableDictionary_2<T0, T1> : {}) & (TShape extends System_Collections_Immutable.IImmutableList_1<infer T0> ? __Ext_System_Collections_Immutable_IImmutableList_1<T0> : {}) & (TShape extends System_Collections_Immutable.IImmutableQueue_1<infer T0> ? __Ext_System_Collections_Immutable_IImmutableQueue_1<T0> : {}) & (TShape extends System_Collections_Immutable.IImmutableStack_1<infer T0> ? __Ext_System_Collections_Immutable_IImmutableStack_1<T0> : {}) & (TShape extends System_Collections_Immutable.ImmutableArray_1<infer T0> ? __Ext_System_Collections_Immutable_ImmutableArray_1<T0> : {}) & (TShape extends System_Collections_Immutable.ImmutableArray_1_Builder<infer T0> ?
|
|
2806
|
+
(TShape extends System.ReadOnlySpan_1<infer T0> ? __Ext_System_Collections_Immutable_ReadOnlySpan_1<T0> : {}) & (TShape extends System.Span_1<infer T0> ? __Ext_System_Collections_Immutable_Span_1<T0> : {}) & (TShape extends System_Collections_Generic.IEnumerable_1<infer T0> ? (TShape extends System_Collections_Immutable.ImmutableArray_1_Builder<infer _0> ? {} : (TShape extends System_Collections_Immutable.ImmutableHashSet_1_Builder<infer _0> ? {} : (TShape extends System_Collections_Immutable.ImmutableList_1_Builder<infer _0> ? {} : (TShape extends System_Collections_Immutable.ImmutableSortedSet_1_Builder<infer _0> ? {} : __Ext_System_Collections_Immutable_IEnumerable_1<T0>)))) : {}) & (TShape extends System_Collections_Immutable.IImmutableDictionary_2<infer T0, infer T1> ? __Ext_System_Collections_Immutable_IImmutableDictionary_2<T0, T1> : {}) & (TShape extends System_Collections_Immutable.IImmutableList_1<infer T0> ? __Ext_System_Collections_Immutable_IImmutableList_1<T0> : {}) & (TShape extends System_Collections_Immutable.IImmutableQueue_1<infer T0> ? __Ext_System_Collections_Immutable_IImmutableQueue_1<T0> : {}) & (TShape extends System_Collections_Immutable.IImmutableStack_1<infer T0> ? __Ext_System_Collections_Immutable_IImmutableStack_1<T0> : {}) & (TShape extends System_Collections_Immutable.ImmutableArray_1<infer T0> ? __Ext_System_Collections_Immutable_ImmutableArray_1<T0> : {}) & (TShape extends System_Collections_Immutable.ImmutableArray_1_Builder<infer T0> ? __Ext_System_Collections_Immutable_ImmutableArray_1_Builder<T0> : {}) & (TShape extends System_Collections_Immutable.ImmutableDictionary_2_Builder<infer T0, infer T1> ? __Ext_System_Collections_Immutable_ImmutableDictionary_2_Builder<T0, T1> : {}) & (TShape extends System_Collections_Immutable.ImmutableHashSet_1_Builder<infer T0> ? __Ext_System_Collections_Immutable_ImmutableHashSet_1_Builder<T0> : {}) & (TShape extends System_Collections_Immutable.ImmutableList_1_Builder<infer T0> ? __Ext_System_Collections_Immutable_ImmutableList_1_Builder<T0> : {}) & (TShape extends System_Collections_Immutable.ImmutableSortedDictionary_2_Builder<infer T0, infer T1> ? __Ext_System_Collections_Immutable_ImmutableSortedDictionary_2_Builder<T0, T1> : {}) & (TShape extends System_Collections_Immutable.ImmutableSortedSet_1_Builder<infer T0> ? __Ext_System_Collections_Immutable_ImmutableSortedSet_1_Builder<T0> : {}) & (TShape extends (infer T)[] ? __Ext_System_Collections_Immutable_IEnumerable_1<T> : {})
|
|
2297
2807
|
);
|
|
2298
2808
|
|
|
2299
2809
|
interface __TsonicExtApplier_System_Collections_Immutable {
|
|
@@ -2309,7 +2819,7 @@ export type ExtensionMethods_System_Collections_Immutable<TShape> =
|
|
|
2309
2819
|
// Generic helper type for extension methods in namespace: System.Data
|
|
2310
2820
|
type __TsonicExtSurface_System_Data<TShape> =
|
|
2311
2821
|
(
|
|
2312
|
-
(TShape extends System_Collections_Generic.IEnumerable_1<infer T0> ? __Ext_System_Data_IEnumerable_1<T0> : {}) & (TShape extends System_Data.DataRow ? __Ext_System_Data_DataRow : {}) & (TShape extends System_Data.DataTable ? (TShape extends System_Data.TypedTableBase_1<infer _0> ? {} : __Ext_System_Data_DataTable) : {}) & (TShape extends System_Data.EnumerableRowCollection ? __Ext_System_Data_EnumerableRowCollection : {}) & (TShape extends System_Data.EnumerableRowCollection_1<infer T0> ? __Ext_System_Data_EnumerableRowCollection_1<T0> : {}) & (TShape extends System_Data.OrderedEnumerableRowCollection_1<infer T0> ? __Ext_System_Data_OrderedEnumerableRowCollection_1<T0> : {}) & (TShape extends System_Data.TypedTableBase_1<infer T0> ?
|
|
2822
|
+
(TShape extends System_Collections_Generic.IEnumerable_1<infer T0> ? __Ext_System_Data_IEnumerable_1<T0> : {}) & (TShape extends System_Data.DataRow ? __Ext_System_Data_DataRow : {}) & (TShape extends System_Data.DataTable ? (TShape extends System_Data.TypedTableBase_1<infer _0> ? {} : __Ext_System_Data_DataTable) : {}) & (TShape extends System_Data.EnumerableRowCollection ? __Ext_System_Data_EnumerableRowCollection : {}) & (TShape extends System_Data.EnumerableRowCollection_1<infer T0> ? __Ext_System_Data_EnumerableRowCollection_1<T0> : {}) & (TShape extends System_Data.OrderedEnumerableRowCollection_1<infer T0> ? __Ext_System_Data_OrderedEnumerableRowCollection_1<T0> : {}) & (TShape extends System_Data.TypedTableBase_1<infer T0> ? __Ext_System_Data_TypedTableBase_1<T0> : {}) & (TShape extends System_Data_Common.DbDataReader ? __Ext_System_Data_DbDataReader : {}) & (TShape extends (infer T)[] ? __Ext_System_Data_IEnumerable_1<T> : {})
|
|
2313
2823
|
);
|
|
2314
2824
|
|
|
2315
2825
|
interface __TsonicExtApplier_System_Data {
|
|
@@ -2453,7 +2963,7 @@ export type ExtensionMethods_System_IO_Pipes<TShape> =
|
|
|
2453
2963
|
// Generic helper type for extension methods in namespace: System.Linq
|
|
2454
2964
|
type __TsonicExtSurface_System_Linq<TShape> =
|
|
2455
2965
|
(
|
|
2456
|
-
(TShape extends System_Collections.IEnumerable ? (TShape extends System_Collections_Generic.IEnumerable_1<infer _0> ? {} : (TShape extends System_Collections_Immutable.ImmutableArray_1<infer _0> ? {} : (TShape extends System_Collections_Immutable.ImmutableArray_1_Builder<infer _0> ? {} : (TShape extends System_Linq.IQueryable ? {} : (TShape extends System_Linq.IQueryable_1<infer _0> ? {} : (TShape extends System_Linq.ParallelQuery ? {} : (TShape extends System_Linq.ParallelQuery_1<infer _0> ? {} : __Ext_System_Linq_IEnumerable))))))) : {}) & (TShape extends System_Collections_Concurrent.Partitioner_1<infer T0> ? __Ext_System_Linq_Partitioner_1<T0> : {}) & (TShape extends System_Collections_Generic.IAsyncEnumerable_1<infer T0> ? __Ext_System_Linq_IAsyncEnumerable_1<T0> : {}) & (TShape extends System_Collections_Generic.IEnumerable_1<infer T0> ? (TShape extends System_Collections_Immutable.ImmutableArray_1<infer _0> ? {} : (TShape extends System_Collections_Immutable.ImmutableArray_1_Builder<infer _0> ? {} : (TShape extends System_Linq.IQueryable_1<infer _0> ? {} : (TShape extends System_Linq.ParallelQuery_1<infer _0> ? {} :
|
|
2966
|
+
(TShape extends System_Collections.IEnumerable ? (TShape extends System_Collections_Generic.IEnumerable_1<infer _0> ? {} : (TShape extends System_Collections_Immutable.ImmutableArray_1<infer _0> ? {} : (TShape extends System_Collections_Immutable.ImmutableArray_1_Builder<infer _0> ? {} : (TShape extends System_Linq.IQueryable ? {} : (TShape extends System_Linq.IQueryable_1<infer _0> ? {} : (TShape extends System_Linq.ParallelQuery ? {} : (TShape extends System_Linq.ParallelQuery_1<infer _0> ? {} : __Ext_System_Linq_IEnumerable))))))) : {}) & (TShape extends System_Collections_Concurrent.Partitioner_1<infer T0> ? __Ext_System_Linq_Partitioner_1<T0> : {}) & (TShape extends System_Collections_Generic.IAsyncEnumerable_1<infer T0> ? __Ext_System_Linq_IAsyncEnumerable_1<T0> : {}) & (TShape extends System_Collections_Generic.IEnumerable_1<infer T0> ? (TShape extends System_Collections_Immutable.ImmutableArray_1<infer _0> ? {} : (TShape extends System_Collections_Immutable.ImmutableArray_1_Builder<infer _0> ? {} : (TShape extends System_Linq.IQueryable_1<infer _0> ? {} : (TShape extends System_Linq.ParallelQuery_1<infer _0> ? {} : __Ext_System_Linq_IEnumerable_1<T0>)))) : {}) & (TShape extends System_Collections_Immutable.ImmutableArray_1<infer T0> ? __Ext_System_Linq_ImmutableArray_1<T0> : {}) & (TShape extends System_Collections_Immutable.ImmutableArray_1_Builder<infer T0> ? __Ext_System_Linq_ImmutableArray_1_Builder<T0> : {}) & (TShape extends System_Linq.IOrderedAsyncEnumerable_1<infer T0> ? __Ext_System_Linq_IOrderedAsyncEnumerable_1<T0> : {}) & (TShape extends System_Linq.IOrderedEnumerable_1<infer T0> ? __Ext_System_Linq_IOrderedEnumerable_1<T0> : {}) & (TShape extends System_Linq.IOrderedQueryable_1<infer T0> ? __Ext_System_Linq_IOrderedQueryable_1<T0> : {}) & (TShape extends System_Linq.IQueryable ? __Ext_System_Linq_IQueryable : {}) & (TShape extends System_Linq.IQueryable_1<infer T0> ? __Ext_System_Linq_IQueryable_1<T0> : {}) & (TShape extends System_Linq.OrderedParallelQuery_1<infer T0> ? __Ext_System_Linq_OrderedParallelQuery_1<T0> : {}) & (TShape extends System_Linq.ParallelQuery ? __Ext_System_Linq_ParallelQuery : {}) & (TShape extends System_Linq.ParallelQuery_1<infer T0> ? __Ext_System_Linq_ParallelQuery_1<T0> : {}) & (TShape extends (infer T)[] ? __Ext_System_Linq_IEnumerable_1<T> : {})
|
|
2457
2967
|
);
|
|
2458
2968
|
|
|
2459
2969
|
interface __TsonicExtApplier_System_Linq {
|
|
@@ -2517,7 +3027,7 @@ export type ExtensionMethods_System_Numerics<TShape> =
|
|
|
2517
3027
|
// Generic helper type for extension methods in namespace: System.Reflection
|
|
2518
3028
|
type __TsonicExtSurface_System_Reflection<TShape> =
|
|
2519
3029
|
(
|
|
2520
|
-
(TShape extends System.Delegate ? __Ext_System_Reflection_Delegate : {}) & (TShape extends System.Type ? __Ext_System_Reflection_Type : {}) & (TShape extends System_Reflection.Assembly ? __Ext_System_Reflection_Assembly : {}) & (TShape extends System_Reflection.
|
|
3030
|
+
(TShape extends System.Delegate ? __Ext_System_Reflection_Delegate : {}) & (TShape extends System.Type ? __Ext_System_Reflection_Type : {}) & (TShape extends System_Reflection.Assembly ? __Ext_System_Reflection_Assembly : {}) & (TShape extends System_Reflection.EventInfo ? __Ext_System_Reflection_EventInfo : {}) & (TShape extends System_Reflection.MemberInfo ? __Ext_System_Reflection_MemberInfo : {}) & (TShape extends System_Reflection.MethodInfo ? __Ext_System_Reflection_MethodInfo : {}) & (TShape extends System_Reflection.Module ? __Ext_System_Reflection_Module : {}) & (TShape extends System_Reflection.ParameterInfo ? __Ext_System_Reflection_ParameterInfo : {}) & (TShape extends System_Reflection.PropertyInfo ? __Ext_System_Reflection_PropertyInfo : {}) & (TShape extends System_Reflection.TypeInfo ? __Ext_System_Reflection_TypeInfo : {})
|
|
2521
3031
|
);
|
|
2522
3032
|
|
|
2523
3033
|
interface __TsonicExtApplier_System_Reflection {
|
|
@@ -2709,7 +3219,7 @@ export type ExtensionMethods_System_Text_Json_Serialization_Metadata<TShape> =
|
|
|
2709
3219
|
// Generic helper type for extension methods in namespace: System.Threading
|
|
2710
3220
|
type __TsonicExtSurface_System_Threading<TShape> =
|
|
2711
3221
|
(
|
|
2712
|
-
(TShape extends System_Threading.
|
|
3222
|
+
(TShape extends System_Threading.EventWaitHandle ? __Ext_System_Threading_EventWaitHandle : {}) & (TShape extends System_Threading.Mutex ? __Ext_System_Threading_Mutex : {}) & (TShape extends System_Threading.Semaphore ? __Ext_System_Threading_Semaphore : {}) & (TShape extends System_Threading.WaitHandle ? __Ext_System_Threading_WaitHandle : {})
|
|
2713
3223
|
);
|
|
2714
3224
|
|
|
2715
3225
|
interface __TsonicExtApplier_System_Threading {
|
|
@@ -2741,7 +3251,7 @@ export type ExtensionMethods_System_Threading_Tasks<TShape> =
|
|
|
2741
3251
|
// Generic helper type for extension methods in namespace: System.Threading.Tasks.Dataflow
|
|
2742
3252
|
type __TsonicExtSurface_System_Threading_Tasks_Dataflow<TShape> =
|
|
2743
3253
|
(
|
|
2744
|
-
(TShape extends System_Threading_Tasks_Dataflow.
|
|
3254
|
+
(TShape extends System_Threading_Tasks_Dataflow.IReceivableSourceBlock_1<infer T0> ? __Ext_System_Threading_Tasks_Dataflow_IReceivableSourceBlock_1<T0> : {}) & (TShape extends System_Threading_Tasks_Dataflow.ISourceBlock_1<infer T0> ? __Ext_System_Threading_Tasks_Dataflow_ISourceBlock_1<T0> : {}) & (TShape extends System_Threading_Tasks_Dataflow.ITargetBlock_1<infer T0> ? __Ext_System_Threading_Tasks_Dataflow_ITargetBlock_1<T0> : {})
|
|
2745
3255
|
);
|
|
2746
3256
|
|
|
2747
3257
|
interface __TsonicExtApplier_System_Threading_Tasks_Dataflow {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tsonic/dotnet",
|
|
3
|
-
"version": "10.0.
|
|
3
|
+
"version": "10.0.32",
|
|
4
4
|
"description": "TypeScript type definitions for .NET 10 BCL (Base Class Library)",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"keywords": [
|
|
@@ -18,6 +18,6 @@
|
|
|
18
18
|
"url": "https://github.com/tsoniclang/dotnet.git"
|
|
19
19
|
},
|
|
20
20
|
"peerDependencies": {
|
|
21
|
-
"@tsonic/core": "10.0.
|
|
21
|
+
"@tsonic/core": "10.0.32"
|
|
22
22
|
}
|
|
23
23
|
}
|