@tsonic/dotnet 0.7.1 → 0.7.2

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.
@@ -892,247 +892,11 @@ export interface __ArraySegment_1_Enumerator$views<T> {
892
892
  export type ArraySegment_1_Enumerator<T> = ArraySegment_1_Enumerator$instance<T> & __ArraySegment_1_Enumerator$views<T>;
893
893
 
894
894
 
895
- export interface Boolean$instance {
896
- compareTo(obj: unknown): int;
897
- compareTo(value: boolean): int;
898
- equals(obj: unknown): boolean;
899
- equals(obj: boolean): boolean;
900
- getHashCode(): int;
901
- getTypeCode(): TypeCode;
902
- toString(): string;
903
- toString(provider: IFormatProvider): string;
904
- tryFormat(destination: Span_1<CLROf<char>>, charsWritten: { value: ref<int> }): boolean;
905
- }
906
-
907
-
908
- export const Boolean: {
909
- new(): Boolean$instance;
910
- readonly trueString: string;
911
- readonly falseString: string;
912
- parse(value: ReadOnlySpan_1<CLROf<char>>): boolean;
913
- parse(value: string): boolean;
914
- tryParse(value: ReadOnlySpan_1<CLROf<char>>, result: { value: ref<boolean> }): boolean;
915
- tryParse(value: string, result: { value: ref<boolean> }): boolean;
916
- };
917
-
918
-
919
- export interface __Boolean$views {
920
- As_IComparable(): IComparable$instance;
921
- As_IComparable_1(): IComparable_1$instance<CLROf<boolean>>;
922
- As_IConvertible(): IConvertible$instance;
923
- As_IEquatable_1(): IEquatable_1$instance<CLROf<boolean>>;
924
- As_IParsable_1(): IParsable_1$instance<CLROf<boolean>>;
925
- As_ISpanParsable_1(): ISpanParsable_1$instance<CLROf<boolean>>;
926
-
927
- // Structural method bridges for numeric interface constraints
928
- Equals(other: Boolean): boolean;
929
- CompareTo(obj: unknown): int;
930
- }
931
-
932
- export interface Boolean$instance extends ISpanParsable_1$instance<CLROf<boolean>> {}
933
-
934
- export type Boolean = boolean | (Boolean$instance & __Boolean$views);
935
-
936
-
937
- export interface Byte$instance extends IBitwiseOperators_3<CLROf<byte>, CLROf<byte>, CLROf<byte>>, IComparisonOperators_3<CLROf<byte>, CLROf<byte>, CLROf<boolean>>, IEqualityOperators_3<CLROf<byte>, CLROf<byte>, CLROf<boolean>>, IModulusOperators_3<CLROf<byte>, CLROf<byte>, CLROf<byte>>, IAdditionOperators_3<CLROf<byte>, CLROf<byte>, CLROf<byte>>, IDecrementOperators_1<CLROf<byte>>, IDivisionOperators_3<CLROf<byte>, CLROf<byte>, CLROf<byte>>, IIncrementOperators_1<CLROf<byte>>, IMultiplyOperators_3<CLROf<byte>, CLROf<byte>, CLROf<byte>>, ISubtractionOperators_3<CLROf<byte>, CLROf<byte>, CLROf<byte>>, IUnaryPlusOperators_2<CLROf<byte>, CLROf<byte>>, IUnaryNegationOperators_2<CLROf<byte>, CLROf<byte>>, IShiftOperators_3<CLROf<byte>, CLROf<int>, CLROf<byte>> {
938
- compareTo(value: unknown): int;
939
- compareTo(value: byte): int;
940
- equals(obj: unknown): boolean;
941
- equals(obj: byte): boolean;
942
- getHashCode(): int;
943
- getTypeCode(): TypeCode;
944
- toString(): string;
945
- toString(format: string): string;
946
- toString(provider: IFormatProvider): string;
947
- toString(format: string, provider: IFormatProvider): string;
948
- tryFormat(destination: Span_1<CLROf<char>>, charsWritten: { value: ref<int> }, format?: ReadOnlySpan_1<CLROf<char>>, provider?: IFormatProvider): boolean;
949
- tryFormat(utf8Destination: Span_1<CLROf<byte>>, bytesWritten: { value: ref<int> }, format?: ReadOnlySpan_1<CLROf<char>>, provider?: IFormatProvider): boolean;
950
- }
951
-
952
-
953
- export const Byte: {
954
- new(): Byte$instance;
955
- readonly maxValue: byte;
956
- readonly minValue: byte;
957
- clamp(value: byte, min: byte, max: byte): byte;
958
- createChecked<TOther extends INumberBase_1<TOther>>(value: TOther): byte;
959
- createSaturating<TOther extends INumberBase_1<TOther>>(value: TOther): byte;
960
- createTruncating<TOther extends INumberBase_1<TOther>>(value: TOther): byte;
961
- divRem(left: byte, right: byte): ValueTuple_2<CLROf<byte>, CLROf<byte>>;
962
- isEvenInteger(value: byte): boolean;
963
- isOddInteger(value: byte): boolean;
964
- isPow2(value: byte): boolean;
965
- leadingZeroCount(value: byte): byte;
966
- log2(value: byte): byte;
967
- max(x: byte, y: byte): byte;
968
- min(x: byte, y: byte): byte;
969
- parse(utf8Text: ReadOnlySpan_1<CLROf<byte>>, style?: NumberStyles, provider?: IFormatProvider): byte;
970
- parse(utf8Text: ReadOnlySpan_1<CLROf<byte>>, provider: IFormatProvider): byte;
971
- parse(s: ReadOnlySpan_1<CLROf<char>>, style?: NumberStyles, provider?: IFormatProvider): byte;
972
- parse(s: ReadOnlySpan_1<CLROf<char>>, provider: IFormatProvider): byte;
973
- parse(s: string, style: NumberStyles, provider: IFormatProvider): byte;
974
- parse(s: string, style: NumberStyles): byte;
975
- parse(s: string, provider: IFormatProvider): byte;
976
- parse(s: string): byte;
977
- popCount(value: byte): byte;
978
- rotateLeft(value: byte, rotateAmount: int): byte;
979
- rotateRight(value: byte, rotateAmount: int): byte;
980
- sign(value: byte): int;
981
- trailingZeroCount(value: byte): byte;
982
- tryParse(utf8Text: ReadOnlySpan_1<CLROf<byte>>, result: { value: ref<byte> }): boolean;
983
- tryParse(utf8Text: ReadOnlySpan_1<CLROf<byte>>, style: NumberStyles, provider: IFormatProvider, result: { value: ref<byte> }): boolean;
984
- tryParse(utf8Text: ReadOnlySpan_1<CLROf<byte>>, provider: IFormatProvider, result: { value: ref<byte> }): boolean;
985
- tryParse(s: ReadOnlySpan_1<CLROf<char>>, result: { value: ref<byte> }): boolean;
986
- tryParse(s: ReadOnlySpan_1<CLROf<char>>, style: NumberStyles, provider: IFormatProvider, result: { value: ref<byte> }): boolean;
987
- tryParse(s: ReadOnlySpan_1<CLROf<char>>, provider: IFormatProvider, result: { value: ref<byte> }): boolean;
988
- tryParse(s: string, result: { value: ref<byte> }): boolean;
989
- tryParse(s: string, style: NumberStyles, provider: IFormatProvider, result: { value: ref<byte> }): boolean;
990
- tryParse(s: string, provider: IFormatProvider, result: { value: ref<byte> }): boolean;
991
- };
992
-
993
-
994
- export interface __Byte$views {
995
- As_IComparable(): IComparable$instance;
996
- As_IComparable_1(): IComparable_1$instance<CLROf<byte>>;
997
- As_IConvertible(): IConvertible$instance;
998
- As_IEquatable_1(): IEquatable_1$instance<CLROf<byte>>;
999
- As_IFormattable(): IFormattable$instance;
1000
- As_IParsable_1(): IParsable_1$instance<CLROf<byte>>;
1001
- As_ISpanFormattable(): ISpanFormattable$instance;
1002
- As_ISpanParsable_1(): ISpanParsable_1$instance<CLROf<byte>>;
1003
- As_IUtf8SpanFormattable(): IUtf8SpanFormattable$instance;
1004
- As_IUtf8SpanParsable_1(): IUtf8SpanParsable_1$instance<CLROf<byte>>;
1005
- As_IAdditiveIdentity_2(): System_Numerics_Internal.IAdditiveIdentity_2$instance<CLROf<byte>, CLROf<byte>>;
1006
- As_IBinaryInteger_1(): System_Numerics_Internal.IBinaryInteger_1$instance<CLROf<byte>>;
1007
- As_IMinMaxValue_1(): System_Numerics_Internal.IMinMaxValue_1$instance<CLROf<byte>>;
1008
- As_INumber_1(): System_Numerics_Internal.INumber_1$instance<CLROf<byte>>;
1009
- As_INumberBase_1(): System_Numerics_Internal.INumberBase_1$instance<CLROf<byte>>;
1010
-
1011
- // Structural method bridges for numeric interface constraints
1012
- Equals(other: Byte): boolean;
1013
- CompareTo(obj: unknown): int;
1014
- ToString(format: string, formatProvider: IFormatProvider): string;
1015
- TryFormat(destination: Span_1<CLROf<char>>, charsWritten: { value: ref<int> }, format: ReadOnlySpan_1<CLROf<char>>, provider: IFormatProvider): boolean;
1016
- GetByteCount(): int;
1017
- TryWriteBigEndian(destination: Span_1<CLROf<byte>>, bytesWritten: { value: ref<int> }): boolean;
1018
- WriteBigEndian(destination: byte[], startIndex: int): int;
1019
- WriteBigEndian(destination: byte[]): int;
1020
- WriteBigEndian(destination: Span_1<CLROf<byte>>): int;
1021
- }
1022
-
1023
- export interface Byte$instance extends System_Numerics_Internal.IMinMaxValue_1$instance<CLROf<byte>> {}
1024
-
1025
- export type Byte = Byte$instance & __Byte$views;
1026
-
1027
-
1028
- export interface Char$instance extends IBitwiseOperators_3<CLROf<char>, CLROf<char>, CLROf<char>>, IComparisonOperators_3<CLROf<char>, CLROf<char>, CLROf<boolean>>, IEqualityOperators_3<CLROf<char>, CLROf<char>, CLROf<boolean>>, IModulusOperators_3<CLROf<char>, CLROf<char>, CLROf<char>>, IAdditionOperators_3<CLROf<char>, CLROf<char>, CLROf<char>>, IDecrementOperators_1<CLROf<char>>, IDivisionOperators_3<CLROf<char>, CLROf<char>, CLROf<char>>, IIncrementOperators_1<CLROf<char>>, IMultiplyOperators_3<CLROf<char>, CLROf<char>, CLROf<char>>, ISubtractionOperators_3<CLROf<char>, CLROf<char>, CLROf<char>>, IUnaryPlusOperators_2<CLROf<char>, CLROf<char>>, IUnaryNegationOperators_2<CLROf<char>, CLROf<char>>, IShiftOperators_3<CLROf<char>, CLROf<int>, CLROf<char>> {
1029
- compareTo(value: unknown): int;
1030
- compareTo(value: char): int;
1031
- equals(obj: unknown): boolean;
1032
- equals(obj: char): boolean;
1033
- getHashCode(): int;
1034
- getTypeCode(): TypeCode;
1035
- toString(): string;
1036
- toString(provider: IFormatProvider): string;
1037
- }
1038
-
895
+ export type Boolean = boolean;
1039
896
 
1040
- export const Char: {
1041
- new(): Char$instance;
1042
- readonly maxValue: char;
1043
- readonly minValue: char;
1044
- convertFromUtf32(utf32: int): string;
1045
- convertToUtf32(highSurrogate: char, lowSurrogate: char): int;
1046
- convertToUtf32(s: string, index: int): int;
1047
- getNumericValue(c: char): double;
1048
- getNumericValue(s: string, index: int): double;
1049
- getUnicodeCategory(c: char): UnicodeCategory;
1050
- getUnicodeCategory(s: string, index: int): UnicodeCategory;
1051
- isAscii(c: char): boolean;
1052
- isAsciiDigit(c: char): boolean;
1053
- isAsciiHexDigit(c: char): boolean;
1054
- isAsciiHexDigitLower(c: char): boolean;
1055
- isAsciiHexDigitUpper(c: char): boolean;
1056
- isAsciiLetter(c: char): boolean;
1057
- isAsciiLetterLower(c: char): boolean;
1058
- isAsciiLetterOrDigit(c: char): boolean;
1059
- isAsciiLetterUpper(c: char): boolean;
1060
- isBetween(c: char, minInclusive: char, maxInclusive: char): boolean;
1061
- isControl(c: char): boolean;
1062
- isControl(s: string, index: int): boolean;
1063
- isDigit(c: char): boolean;
1064
- isDigit(s: string, index: int): boolean;
1065
- isHighSurrogate(c: char): boolean;
1066
- isHighSurrogate(s: string, index: int): boolean;
1067
- isLetter(c: char): boolean;
1068
- isLetter(s: string, index: int): boolean;
1069
- isLetterOrDigit(c: char): boolean;
1070
- isLetterOrDigit(s: string, index: int): boolean;
1071
- isLower(c: char): boolean;
1072
- isLower(s: string, index: int): boolean;
1073
- isLowSurrogate(c: char): boolean;
1074
- isLowSurrogate(s: string, index: int): boolean;
1075
- isNumber(c: char): boolean;
1076
- isNumber(s: string, index: int): boolean;
1077
- isPunctuation(c: char): boolean;
1078
- isPunctuation(s: string, index: int): boolean;
1079
- isSeparator(c: char): boolean;
1080
- isSeparator(s: string, index: int): boolean;
1081
- isSurrogate(c: char): boolean;
1082
- isSurrogate(s: string, index: int): boolean;
1083
- isSurrogatePair(highSurrogate: char, lowSurrogate: char): boolean;
1084
- isSurrogatePair(s: string, index: int): boolean;
1085
- isSymbol(c: char): boolean;
1086
- isSymbol(s: string, index: int): boolean;
1087
- isUpper(c: char): boolean;
1088
- isUpper(s: string, index: int): boolean;
1089
- isWhiteSpace(c: char): boolean;
1090
- isWhiteSpace(s: string, index: int): boolean;
1091
- parse(s: string): char;
1092
- toLower(c: char, culture: CultureInfo): char;
1093
- toLower(c: char): char;
1094
- toLowerInvariant(c: char): char;
1095
- toString(c: char): string;
1096
- toUpper(c: char, culture: CultureInfo): char;
1097
- toUpper(c: char): char;
1098
- toUpperInvariant(c: char): char;
1099
- tryParse(s: string, result: { value: ref<char> }): boolean;
1100
- };
1101
-
1102
-
1103
- export interface __Char$views {
1104
- As_IComparable(): IComparable$instance;
1105
- As_IComparable_1(): IComparable_1$instance<CLROf<char>>;
1106
- As_IConvertible(): IConvertible$instance;
1107
- As_IEquatable_1(): IEquatable_1$instance<CLROf<char>>;
1108
- As_IFormattable(): IFormattable$instance;
1109
- As_IParsable_1(): IParsable_1$instance<CLROf<char>>;
1110
- As_ISpanFormattable(): ISpanFormattable$instance;
1111
- As_ISpanParsable_1(): ISpanParsable_1$instance<CLROf<char>>;
1112
- As_IUtf8SpanFormattable(): IUtf8SpanFormattable$instance;
1113
- As_IUtf8SpanParsable_1(): IUtf8SpanParsable_1$instance<CLROf<char>>;
1114
- As_IAdditiveIdentity_2(): System_Numerics_Internal.IAdditiveIdentity_2$instance<CLROf<char>, CLROf<char>>;
1115
- As_IBinaryInteger_1(): System_Numerics_Internal.IBinaryInteger_1$instance<CLROf<char>>;
1116
- As_IMinMaxValue_1(): System_Numerics_Internal.IMinMaxValue_1$instance<CLROf<char>>;
1117
- As_INumber_1(): System_Numerics_Internal.INumber_1$instance<CLROf<char>>;
1118
- As_INumberBase_1(): System_Numerics_Internal.INumberBase_1$instance<CLROf<char>>;
1119
-
1120
- // Structural method bridges for numeric interface constraints
1121
- Equals(other: Char): boolean;
1122
- CompareTo(obj: unknown): int;
1123
- ToString(format: string, formatProvider: IFormatProvider): string;
1124
- TryFormat(destination: Span_1<CLROf<char>>, charsWritten: { value: ref<int> }, format: ReadOnlySpan_1<CLROf<char>>, provider: IFormatProvider): boolean;
1125
- GetByteCount(): int;
1126
- TryWriteBigEndian(destination: Span_1<CLROf<byte>>, bytesWritten: { value: ref<int> }): boolean;
1127
- WriteBigEndian(destination: byte[], startIndex: int): int;
1128
- WriteBigEndian(destination: byte[]): int;
1129
- WriteBigEndian(destination: Span_1<CLROf<byte>>): int;
1130
- }
1131
-
1132
- export interface Char$instance extends System_Numerics_Internal.IMinMaxValue_1$instance<CLROf<char>> {}
1133
-
1134
- export type Char = Char$instance & __Char$views;
897
+ export type Byte = byte;
1135
898
 
899
+ export type Char = char;
1136
900
 
1137
901
  export interface ConsoleKeyInfo$instance {
1138
902
  readonly key: ConsoleKey;
@@ -1501,143 +1265,7 @@ export interface DateTimeOffset$instance extends IComparable_1$instance<DateTime
1501
1265
  export type DateTimeOffset = DateTimeOffset$instance & __DateTimeOffset$views;
1502
1266
 
1503
1267
 
1504
- export interface Decimal$instance extends IAdditionOperators_3<CLROf<decimal>, CLROf<decimal>, CLROf<decimal>>, IDecrementOperators_1<CLROf<decimal>>, IDivisionOperators_3<CLROf<decimal>, CLROf<decimal>, CLROf<decimal>>, IEqualityOperators_3<CLROf<decimal>, CLROf<decimal>, CLROf<boolean>>, IIncrementOperators_1<CLROf<decimal>>, IMultiplyOperators_3<CLROf<decimal>, CLROf<decimal>, CLROf<decimal>>, ISubtractionOperators_3<CLROf<decimal>, CLROf<decimal>, CLROf<decimal>>, IUnaryPlusOperators_2<CLROf<decimal>, CLROf<decimal>>, IUnaryNegationOperators_2<CLROf<decimal>, CLROf<decimal>>, IComparisonOperators_3<CLROf<decimal>, CLROf<decimal>, CLROf<boolean>>, IModulusOperators_3<CLROf<decimal>, CLROf<decimal>, CLROf<decimal>> {
1505
- readonly scale: byte;
1506
- compareTo(value: unknown): int;
1507
- compareTo(value: decimal): int;
1508
- equals(value: unknown): boolean;
1509
- equals(value: decimal): boolean;
1510
- getHashCode(): int;
1511
- getTypeCode(): TypeCode;
1512
- toString(): string;
1513
- toString(format: string): string;
1514
- toString(provider: IFormatProvider): string;
1515
- toString(format: string, provider: IFormatProvider): string;
1516
- tryFormat(destination: Span_1<CLROf<char>>, charsWritten: { value: ref<int> }, format?: ReadOnlySpan_1<CLROf<char>>, provider?: IFormatProvider): boolean;
1517
- tryFormat(utf8Destination: Span_1<CLROf<byte>>, bytesWritten: { value: ref<int> }, format?: ReadOnlySpan_1<CLROf<char>>, provider?: IFormatProvider): boolean;
1518
- }
1519
-
1520
-
1521
- export const Decimal: {
1522
- new(value: int): Decimal$instance;
1523
- new(value: uint): Decimal$instance;
1524
- new(value: long): Decimal$instance;
1525
- new(value: ulong): Decimal$instance;
1526
- new(value: float): Decimal$instance;
1527
- new(value: double): Decimal$instance;
1528
- new(bits: int[]): Decimal$instance;
1529
- new(bits: ReadOnlySpan_1<CLROf<int>>): Decimal$instance;
1530
- new(lo: int, mid: int, hi: int, isNegative: boolean, scale: byte): Decimal$instance;
1531
- readonly zero: decimal;
1532
- readonly one: decimal;
1533
- readonly minusOne: decimal;
1534
- readonly maxValue: decimal;
1535
- readonly minValue: decimal;
1536
- abs(value: decimal): decimal;
1537
- add(d1: decimal, d2: decimal): decimal;
1538
- ceiling(d: decimal): decimal;
1539
- clamp(value: decimal, min: decimal, max: decimal): decimal;
1540
- compare(d1: decimal, d2: decimal): int;
1541
- convertToInteger<TInteger extends IBinaryInteger_1<TInteger>>(value: decimal): TInteger;
1542
- convertToIntegerNative<TInteger extends IBinaryInteger_1<TInteger>>(value: decimal): TInteger;
1543
- copySign(value: decimal, sign: decimal): decimal;
1544
- createChecked<TOther extends INumberBase_1<TOther>>(value: TOther): decimal;
1545
- createSaturating<TOther extends INumberBase_1<TOther>>(value: TOther): decimal;
1546
- createTruncating<TOther extends INumberBase_1<TOther>>(value: TOther): decimal;
1547
- divide(d1: decimal, d2: decimal): decimal;
1548
- equals(d1: decimal, d2: decimal): boolean;
1549
- floor(d: decimal): decimal;
1550
- fromOACurrency(cy: long): decimal;
1551
- getBits(d: decimal, destination: Span_1<CLROf<int>>): int;
1552
- getBits(d: decimal): int[];
1553
- isCanonical(value: decimal): boolean;
1554
- isEvenInteger(value: decimal): boolean;
1555
- isInteger(value: decimal): boolean;
1556
- isNegative(value: decimal): boolean;
1557
- isOddInteger(value: decimal): boolean;
1558
- isPositive(value: decimal): boolean;
1559
- max(x: decimal, y: decimal): decimal;
1560
- maxMagnitude(x: decimal, y: decimal): decimal;
1561
- min(x: decimal, y: decimal): decimal;
1562
- minMagnitude(x: decimal, y: decimal): decimal;
1563
- multiply(d1: decimal, d2: decimal): decimal;
1564
- negate(d: decimal): decimal;
1565
- parse(utf8Text: ReadOnlySpan_1<CLROf<byte>>, style?: NumberStyles, provider?: IFormatProvider): decimal;
1566
- parse(utf8Text: ReadOnlySpan_1<CLROf<byte>>, provider: IFormatProvider): decimal;
1567
- parse(s: ReadOnlySpan_1<CLROf<char>>, style?: NumberStyles, provider?: IFormatProvider): decimal;
1568
- parse(s: ReadOnlySpan_1<CLROf<char>>, provider: IFormatProvider): decimal;
1569
- parse(s: string, style: NumberStyles, provider: IFormatProvider): decimal;
1570
- parse(s: string, style: NumberStyles): decimal;
1571
- parse(s: string, provider: IFormatProvider): decimal;
1572
- parse(s: string): decimal;
1573
- remainder(d1: decimal, d2: decimal): decimal;
1574
- round(d: decimal, decimals: int, mode: MidpointRounding): decimal;
1575
- round(d: decimal, decimals: int): decimal;
1576
- round(d: decimal, mode: MidpointRounding): decimal;
1577
- round(d: decimal): decimal;
1578
- sign(d: decimal): int;
1579
- subtract(d1: decimal, d2: decimal): decimal;
1580
- toByte(value: decimal): byte;
1581
- toDouble(d: decimal): double;
1582
- toInt16(value: decimal): short;
1583
- toInt32(d: decimal): int;
1584
- toInt64(d: decimal): long;
1585
- toOACurrency(value: decimal): long;
1586
- toSByte(value: decimal): sbyte;
1587
- toSingle(d: decimal): float;
1588
- toUInt16(value: decimal): ushort;
1589
- toUInt32(d: decimal): uint;
1590
- toUInt64(d: decimal): ulong;
1591
- truncate(d: decimal): decimal;
1592
- tryGetBits(d: decimal, destination: Span_1<CLROf<int>>, valuesWritten: { value: ref<int> }): boolean;
1593
- tryParse(utf8Text: ReadOnlySpan_1<CLROf<byte>>, result: { value: ref<decimal> }): boolean;
1594
- tryParse(utf8Text: ReadOnlySpan_1<CLROf<byte>>, style: NumberStyles, provider: IFormatProvider, result: { value: ref<decimal> }): boolean;
1595
- tryParse(utf8Text: ReadOnlySpan_1<CLROf<byte>>, provider: IFormatProvider, result: { value: ref<decimal> }): boolean;
1596
- tryParse(s: ReadOnlySpan_1<CLROf<char>>, result: { value: ref<decimal> }): boolean;
1597
- tryParse(s: ReadOnlySpan_1<CLROf<char>>, style: NumberStyles, provider: IFormatProvider, result: { value: ref<decimal> }): boolean;
1598
- tryParse(s: ReadOnlySpan_1<CLROf<char>>, provider: IFormatProvider, result: { value: ref<decimal> }): boolean;
1599
- tryParse(s: string, result: { value: ref<decimal> }): boolean;
1600
- tryParse(s: string, style: NumberStyles, provider: IFormatProvider, result: { value: ref<decimal> }): boolean;
1601
- tryParse(s: string, provider: IFormatProvider, result: { value: ref<decimal> }): boolean;
1602
- };
1603
-
1604
-
1605
- export interface __Decimal$views {
1606
- As_IComparable(): IComparable$instance;
1607
- As_IComparable_1(): IComparable_1$instance<CLROf<decimal>>;
1608
- As_IConvertible(): IConvertible$instance;
1609
- As_IEquatable_1(): IEquatable_1$instance<CLROf<decimal>>;
1610
- As_IFormattable(): IFormattable$instance;
1611
- As_IParsable_1(): IParsable_1$instance<CLROf<decimal>>;
1612
- As_ISpanFormattable(): ISpanFormattable$instance;
1613
- As_ISpanParsable_1(): ISpanParsable_1$instance<CLROf<decimal>>;
1614
- As_IUtf8SpanFormattable(): IUtf8SpanFormattable$instance;
1615
- As_IUtf8SpanParsable_1(): IUtf8SpanParsable_1$instance<CLROf<decimal>>;
1616
- As_IAdditiveIdentity_2(): System_Numerics_Internal.IAdditiveIdentity_2$instance<CLROf<decimal>, CLROf<decimal>>;
1617
- As_IFloatingPoint_1(): System_Numerics_Internal.IFloatingPoint_1$instance<CLROf<decimal>>;
1618
- As_IMinMaxValue_1(): System_Numerics_Internal.IMinMaxValue_1$instance<CLROf<decimal>>;
1619
- As_INumber_1(): System_Numerics_Internal.INumber_1$instance<CLROf<decimal>>;
1620
- As_INumberBase_1(): System_Numerics_Internal.INumberBase_1$instance<CLROf<decimal>>;
1621
- As_IDeserializationCallback(): System_Runtime_Serialization_Internal.IDeserializationCallback$instance;
1622
- As_ISerializable(): System_Runtime_Serialization_Internal.ISerializable$instance;
1623
-
1624
- // Structural method bridges for numeric interface constraints
1625
- Equals(other: Decimal): boolean;
1626
- CompareTo(obj: unknown): int;
1627
- ToString(format: string, formatProvider: IFormatProvider): string;
1628
- TryFormat(destination: Span_1<CLROf<char>>, charsWritten: { value: ref<int> }, format: ReadOnlySpan_1<CLROf<char>>, provider: IFormatProvider): boolean;
1629
- GetExponentByteCount(): int;
1630
- GetExponentShortestBitLength(): int;
1631
- TryWriteExponentBigEndian(destination: Span_1<CLROf<byte>>, bytesWritten: { value: ref<int> }): boolean;
1632
- WriteExponentBigEndian(destination: byte[], startIndex: int): int;
1633
- WriteExponentBigEndian(destination: byte[]): int;
1634
- WriteExponentBigEndian(destination: Span_1<CLROf<byte>>): int;
1635
- }
1636
-
1637
- export interface Decimal$instance extends System_Numerics_Internal.IMinMaxValue_1$instance<CLROf<decimal>>, System_Runtime_Serialization_Internal.IDeserializationCallback$instance, System_Runtime_Serialization_Internal.ISerializable$instance {}
1638
-
1639
- export type Decimal = Decimal$instance & __Decimal$views;
1640
-
1268
+ export type Decimal = decimal;
1641
1269
 
1642
1270
  export interface Delegate_InvocationListEnumerator_1$instance<TDelegate extends Function> {
1643
1271
  readonly current: TDelegate;
@@ -1653,183 +1281,7 @@ export const Delegate_InvocationListEnumerator_1: {
1653
1281
 
1654
1282
  export type Delegate_InvocationListEnumerator_1<TDelegate extends Function> = Delegate_InvocationListEnumerator_1$instance<TDelegate>;
1655
1283
 
1656
- export interface Double$instance extends IBitwiseOperators_3<CLROf<double>, CLROf<double>, CLROf<double>>, IComparisonOperators_3<CLROf<double>, CLROf<double>, CLROf<boolean>>, IEqualityOperators_3<CLROf<double>, CLROf<double>, CLROf<boolean>>, IModulusOperators_3<CLROf<double>, CLROf<double>, CLROf<double>>, IAdditionOperators_3<CLROf<double>, CLROf<double>, CLROf<double>>, IDecrementOperators_1<CLROf<double>>, IDivisionOperators_3<CLROf<double>, CLROf<double>, CLROf<double>>, IIncrementOperators_1<CLROf<double>>, IMultiplyOperators_3<CLROf<double>, CLROf<double>, CLROf<double>>, ISubtractionOperators_3<CLROf<double>, CLROf<double>, CLROf<double>>, IUnaryPlusOperators_2<CLROf<double>, CLROf<double>>, IUnaryNegationOperators_2<CLROf<double>, CLROf<double>> {
1657
- compareTo(value: unknown): int;
1658
- compareTo(value: double): int;
1659
- equals(obj: unknown): boolean;
1660
- equals(obj: double): boolean;
1661
- getHashCode(): int;
1662
- getTypeCode(): TypeCode;
1663
- toString(): string;
1664
- toString(format: string): string;
1665
- toString(provider: IFormatProvider): string;
1666
- toString(format: string, provider: IFormatProvider): string;
1667
- tryFormat(destination: Span_1<CLROf<char>>, charsWritten: { value: ref<int> }, format?: ReadOnlySpan_1<CLROf<char>>, provider?: IFormatProvider): boolean;
1668
- tryFormat(utf8Destination: Span_1<CLROf<byte>>, bytesWritten: { value: ref<int> }, format?: ReadOnlySpan_1<CLROf<char>>, provider?: IFormatProvider): boolean;
1669
- }
1670
-
1671
-
1672
- export const Double: {
1673
- new(): Double$instance;
1674
- readonly minValue: double;
1675
- readonly maxValue: double;
1676
- readonly epsilon: double;
1677
- readonly negativeInfinity: double;
1678
- readonly positiveInfinity: double;
1679
- readonly naN: double;
1680
- readonly negativeZero: double;
1681
- readonly E: double;
1682
- readonly pi: double;
1683
- readonly tau: double;
1684
- abs(value: double): double;
1685
- acos(x: double): double;
1686
- acosh(x: double): double;
1687
- acosPi(x: double): double;
1688
- asin(x: double): double;
1689
- asinh(x: double): double;
1690
- asinPi(x: double): double;
1691
- atan(x: double): double;
1692
- atan2(y: double, x: double): double;
1693
- atan2Pi(y: double, x: double): double;
1694
- atanh(x: double): double;
1695
- atanPi(x: double): double;
1696
- bitDecrement(x: double): double;
1697
- bitIncrement(x: double): double;
1698
- cbrt(x: double): double;
1699
- ceiling(x: double): double;
1700
- clamp(value: double, min: double, max: double): double;
1701
- clampNative(value: double, min: double, max: double): double;
1702
- convertToInteger<TInteger extends IBinaryInteger_1<TInteger>>(value: double): TInteger;
1703
- convertToIntegerNative<TInteger extends IBinaryInteger_1<TInteger>>(value: double): TInteger;
1704
- copySign(value: double, sign: double): double;
1705
- cos(x: double): double;
1706
- cosh(x: double): double;
1707
- cosPi(x: double): double;
1708
- createChecked<TOther extends INumberBase_1<TOther>>(value: TOther): double;
1709
- createSaturating<TOther extends INumberBase_1<TOther>>(value: TOther): double;
1710
- createTruncating<TOther extends INumberBase_1<TOther>>(value: TOther): double;
1711
- degreesToRadians(degrees: double): double;
1712
- exp(x: double): double;
1713
- exp10(x: double): double;
1714
- exp10M1(x: double): double;
1715
- exp2(x: double): double;
1716
- exp2M1(x: double): double;
1717
- expM1(x: double): double;
1718
- floor(x: double): double;
1719
- fusedMultiplyAdd(left: double, right: double, addend: double): double;
1720
- hypot(x: double, y: double): double;
1721
- ieee754Remainder(left: double, right: double): double;
1722
- iLogB(x: double): int;
1723
- isEvenInteger(value: double): boolean;
1724
- isFinite(d: double): boolean;
1725
- isInfinity(d: double): boolean;
1726
- isInteger(value: double): boolean;
1727
- isNaN(d: double): boolean;
1728
- isNegative(d: double): boolean;
1729
- isNegativeInfinity(d: double): boolean;
1730
- isNormal(d: double): boolean;
1731
- isOddInteger(value: double): boolean;
1732
- isPositive(value: double): boolean;
1733
- isPositiveInfinity(d: double): boolean;
1734
- isPow2(value: double): boolean;
1735
- isRealNumber(value: double): boolean;
1736
- isSubnormal(d: double): boolean;
1737
- lerp(value1: double, value2: double, amount: double): double;
1738
- log(x: double, newBase: double): double;
1739
- log(x: double): double;
1740
- log10(x: double): double;
1741
- log10P1(x: double): double;
1742
- log2(value: double): double;
1743
- log2P1(x: double): double;
1744
- logP1(x: double): double;
1745
- max(x: double, y: double): double;
1746
- maxMagnitude(x: double, y: double): double;
1747
- maxMagnitudeNumber(x: double, y: double): double;
1748
- maxNative(x: double, y: double): double;
1749
- maxNumber(x: double, y: double): double;
1750
- min(x: double, y: double): double;
1751
- minMagnitude(x: double, y: double): double;
1752
- minMagnitudeNumber(x: double, y: double): double;
1753
- minNative(x: double, y: double): double;
1754
- minNumber(x: double, y: double): double;
1755
- multiplyAddEstimate(left: double, right: double, addend: double): double;
1756
- parse(utf8Text: ReadOnlySpan_1<CLROf<byte>>, style?: NumberStyles, provider?: IFormatProvider): double;
1757
- parse(utf8Text: ReadOnlySpan_1<CLROf<byte>>, provider: IFormatProvider): double;
1758
- parse(s: ReadOnlySpan_1<CLROf<char>>, style?: NumberStyles, provider?: IFormatProvider): double;
1759
- parse(s: ReadOnlySpan_1<CLROf<char>>, provider: IFormatProvider): double;
1760
- parse(s: string, style: NumberStyles, provider: IFormatProvider): double;
1761
- parse(s: string, style: NumberStyles): double;
1762
- parse(s: string, provider: IFormatProvider): double;
1763
- parse(s: string): double;
1764
- pow(x: double, y: double): double;
1765
- radiansToDegrees(radians: double): double;
1766
- reciprocalEstimate(x: double): double;
1767
- reciprocalSqrtEstimate(x: double): double;
1768
- rootN(x: double, n: int): double;
1769
- round(x: double, digits: int, mode: MidpointRounding): double;
1770
- round(x: double, digits: int): double;
1771
- round(x: double, mode: MidpointRounding): double;
1772
- round(x: double): double;
1773
- scaleB(x: double, n: int): double;
1774
- sign(value: double): int;
1775
- sin(x: double): double;
1776
- sinCos(x: double): ValueTuple_2<CLROf<double>, CLROf<double>>;
1777
- sinCosPi(x: double): ValueTuple_2<CLROf<double>, CLROf<double>>;
1778
- sinh(x: double): double;
1779
- sinPi(x: double): double;
1780
- sqrt(x: double): double;
1781
- tan(x: double): double;
1782
- tanh(x: double): double;
1783
- tanPi(x: double): double;
1784
- truncate(x: double): double;
1785
- tryParse(utf8Text: ReadOnlySpan_1<CLROf<byte>>, result: { value: ref<double> }): boolean;
1786
- tryParse(utf8Text: ReadOnlySpan_1<CLROf<byte>>, style: NumberStyles, provider: IFormatProvider, result: { value: ref<double> }): boolean;
1787
- tryParse(utf8Text: ReadOnlySpan_1<CLROf<byte>>, provider: IFormatProvider, result: { value: ref<double> }): boolean;
1788
- tryParse(s: ReadOnlySpan_1<CLROf<char>>, result: { value: ref<double> }): boolean;
1789
- tryParse(s: ReadOnlySpan_1<CLROf<char>>, style: NumberStyles, provider: IFormatProvider, result: { value: ref<double> }): boolean;
1790
- tryParse(s: ReadOnlySpan_1<CLROf<char>>, provider: IFormatProvider, result: { value: ref<double> }): boolean;
1791
- tryParse(s: string, result: { value: ref<double> }): boolean;
1792
- tryParse(s: string, style: NumberStyles, provider: IFormatProvider, result: { value: ref<double> }): boolean;
1793
- tryParse(s: string, provider: IFormatProvider, result: { value: ref<double> }): boolean;
1794
- };
1795
-
1796
-
1797
- export interface __Double$views {
1798
- As_IComparable(): IComparable$instance;
1799
- As_IComparable_1(): IComparable_1$instance<CLROf<double>>;
1800
- As_IConvertible(): IConvertible$instance;
1801
- As_IEquatable_1(): IEquatable_1$instance<CLROf<double>>;
1802
- As_IFormattable(): IFormattable$instance;
1803
- As_IParsable_1(): IParsable_1$instance<CLROf<double>>;
1804
- As_ISpanFormattable(): ISpanFormattable$instance;
1805
- As_ISpanParsable_1(): ISpanParsable_1$instance<CLROf<double>>;
1806
- As_IUtf8SpanFormattable(): IUtf8SpanFormattable$instance;
1807
- As_IUtf8SpanParsable_1(): IUtf8SpanParsable_1$instance<CLROf<double>>;
1808
- As_IAdditiveIdentity_2(): System_Numerics_Internal.IAdditiveIdentity_2$instance<CLROf<double>, CLROf<double>>;
1809
- As_IFloatingPoint_1(): System_Numerics_Internal.IFloatingPoint_1$instance<CLROf<double>>;
1810
- As_IMinMaxValue_1(): System_Numerics_Internal.IMinMaxValue_1$instance<CLROf<double>>;
1811
- As_INumber_1(): System_Numerics_Internal.INumber_1$instance<CLROf<double>>;
1812
- As_INumberBase_1(): System_Numerics_Internal.INumberBase_1$instance<CLROf<double>>;
1813
- As_IRootFunctions_1(): System_Numerics_Internal.IRootFunctions_1$instance<CLROf<double>>;
1814
- As_ITrigonometricFunctions_1(): System_Numerics_Internal.ITrigonometricFunctions_1$instance<CLROf<double>>;
1815
-
1816
- // Structural method bridges for numeric interface constraints
1817
- Equals(other: Double): boolean;
1818
- CompareTo(obj: unknown): int;
1819
- ToString(format: string, formatProvider: IFormatProvider): string;
1820
- TryFormat(destination: Span_1<CLROf<char>>, charsWritten: { value: ref<int> }, format: ReadOnlySpan_1<CLROf<char>>, provider: IFormatProvider): boolean;
1821
- GetExponentByteCount(): int;
1822
- GetExponentShortestBitLength(): int;
1823
- TryWriteExponentBigEndian(destination: Span_1<CLROf<byte>>, bytesWritten: { value: ref<int> }): boolean;
1824
- WriteExponentBigEndian(destination: byte[], startIndex: int): int;
1825
- WriteExponentBigEndian(destination: byte[]): int;
1826
- WriteExponentBigEndian(destination: Span_1<CLROf<byte>>): int;
1827
- }
1828
-
1829
- export interface Double$instance extends System_Numerics_Internal.IMinMaxValue_1$instance<CLROf<double>> {}
1830
-
1831
- export type Double = Double$instance & __Double$views;
1832
-
1284
+ export type Double = double;
1833
1285
 
1834
1286
  export interface Environment_ProcessCpuUsage$instance {
1835
1287
  readonly privilegedTime: TimeSpan;
@@ -1960,185 +1412,7 @@ export interface Guid$instance extends IComparable_1$instance<Guid>, ISpanParsab
1960
1412
  export type Guid = Guid$instance & __Guid$views;
1961
1413
 
1962
1414
 
1963
- export interface Half$instance extends IBitwiseOperators_3<CLROf<half>, CLROf<half>, CLROf<half>>, IComparisonOperators_3<CLROf<half>, CLROf<half>, CLROf<boolean>>, IEqualityOperators_3<CLROf<half>, CLROf<half>, CLROf<boolean>>, IModulusOperators_3<CLROf<half>, CLROf<half>, CLROf<half>>, IAdditionOperators_3<CLROf<half>, CLROf<half>, CLROf<half>>, IDecrementOperators_1<CLROf<half>>, IDivisionOperators_3<CLROf<half>, CLROf<half>, CLROf<half>>, IIncrementOperators_1<CLROf<half>>, IMultiplicativeIdentity_2<CLROf<half>, CLROf<half>>, IMultiplyOperators_3<CLROf<half>, CLROf<half>, CLROf<half>>, ISubtractionOperators_3<CLROf<half>, CLROf<half>, CLROf<half>>, IUnaryPlusOperators_2<CLROf<half>, CLROf<half>>, IUnaryNegationOperators_2<CLROf<half>, CLROf<half>> {
1964
- compareTo(obj: unknown): int;
1965
- compareTo(other: half): int;
1966
- equals(obj: unknown): boolean;
1967
- equals(other: half): boolean;
1968
- getHashCode(): int;
1969
- toString(): string;
1970
- toString(format: string): string;
1971
- toString(provider: IFormatProvider): string;
1972
- toString(format: string, provider: IFormatProvider): string;
1973
- tryFormat(destination: Span_1<CLROf<char>>, charsWritten: { value: ref<int> }, format?: ReadOnlySpan_1<CLROf<char>>, provider?: IFormatProvider): boolean;
1974
- tryFormat(utf8Destination: Span_1<CLROf<byte>>, bytesWritten: { value: ref<int> }, format?: ReadOnlySpan_1<CLROf<char>>, provider?: IFormatProvider): boolean;
1975
- }
1976
-
1977
-
1978
- export const Half: {
1979
- new(): Half$instance;
1980
- readonly epsilon: half;
1981
- readonly positiveInfinity: half;
1982
- readonly negativeInfinity: half;
1983
- readonly naN: half;
1984
- readonly minValue: half;
1985
- readonly maxValue: half;
1986
- readonly E: half;
1987
- readonly pi: half;
1988
- readonly tau: half;
1989
- readonly negativeZero: half;
1990
- readonly multiplicativeIdentity: half;
1991
- readonly one: half;
1992
- readonly zero: half;
1993
- readonly negativeOne: half;
1994
- abs(value: half): half;
1995
- acos(x: half): half;
1996
- acosh(x: half): half;
1997
- acosPi(x: half): half;
1998
- asin(x: half): half;
1999
- asinh(x: half): half;
2000
- asinPi(x: half): half;
2001
- atan(x: half): half;
2002
- atan2(y: half, x: half): half;
2003
- atan2Pi(y: half, x: half): half;
2004
- atanh(x: half): half;
2005
- atanPi(x: half): half;
2006
- bitDecrement(x: half): half;
2007
- bitIncrement(x: half): half;
2008
- cbrt(x: half): half;
2009
- ceiling(x: half): half;
2010
- clamp(value: half, min: half, max: half): half;
2011
- clampNative(value: half, min: half, max: half): half;
2012
- convertToInteger<TInteger extends IBinaryInteger_1<TInteger>>(value: half): TInteger;
2013
- convertToIntegerNative<TInteger extends IBinaryInteger_1<TInteger>>(value: half): TInteger;
2014
- copySign(value: half, sign: half): half;
2015
- cos(x: half): half;
2016
- cosh(x: half): half;
2017
- cosPi(x: half): half;
2018
- createChecked<TOther extends INumberBase_1<TOther>>(value: TOther): half;
2019
- createSaturating<TOther extends INumberBase_1<TOther>>(value: TOther): half;
2020
- createTruncating<TOther extends INumberBase_1<TOther>>(value: TOther): half;
2021
- degreesToRadians(degrees: half): half;
2022
- exp(x: half): half;
2023
- exp10(x: half): half;
2024
- exp10M1(x: half): half;
2025
- exp2(x: half): half;
2026
- exp2M1(x: half): half;
2027
- expM1(x: half): half;
2028
- floor(x: half): half;
2029
- fusedMultiplyAdd(left: half, right: half, addend: half): half;
2030
- hypot(x: half, y: half): half;
2031
- ieee754Remainder(left: half, right: half): half;
2032
- iLogB(x: half): int;
2033
- isEvenInteger(value: half): boolean;
2034
- isFinite(value: half): boolean;
2035
- isInfinity(value: half): boolean;
2036
- isInteger(value: half): boolean;
2037
- isNaN(value: half): boolean;
2038
- isNegative(value: half): boolean;
2039
- isNegativeInfinity(value: half): boolean;
2040
- isNormal(value: half): boolean;
2041
- isOddInteger(value: half): boolean;
2042
- isPositive(value: half): boolean;
2043
- isPositiveInfinity(value: half): boolean;
2044
- isPow2(value: half): boolean;
2045
- isRealNumber(value: half): boolean;
2046
- isSubnormal(value: half): boolean;
2047
- lerp(value1: half, value2: half, amount: half): half;
2048
- log(x: half, newBase: half): half;
2049
- log(x: half): half;
2050
- log10(x: half): half;
2051
- log10P1(x: half): half;
2052
- log2(value: half): half;
2053
- log2P1(x: half): half;
2054
- logP1(x: half): half;
2055
- max(x: half, y: half): half;
2056
- maxMagnitude(x: half, y: half): half;
2057
- maxMagnitudeNumber(x: half, y: half): half;
2058
- maxNative(x: half, y: half): half;
2059
- maxNumber(x: half, y: half): half;
2060
- min(x: half, y: half): half;
2061
- minMagnitude(x: half, y: half): half;
2062
- minMagnitudeNumber(x: half, y: half): half;
2063
- minNative(x: half, y: half): half;
2064
- minNumber(x: half, y: half): half;
2065
- multiplyAddEstimate(left: half, right: half, addend: half): half;
2066
- parse(utf8Text: ReadOnlySpan_1<CLROf<byte>>, style?: NumberStyles, provider?: IFormatProvider): half;
2067
- parse(utf8Text: ReadOnlySpan_1<CLROf<byte>>, provider: IFormatProvider): half;
2068
- parse(s: ReadOnlySpan_1<CLROf<char>>, style?: NumberStyles, provider?: IFormatProvider): half;
2069
- parse(s: ReadOnlySpan_1<CLROf<char>>, provider: IFormatProvider): half;
2070
- parse(s: string, style?: NumberStyles, provider?: IFormatProvider): half;
2071
- parse(s: string, style: NumberStyles): half;
2072
- parse(s: string, provider: IFormatProvider): half;
2073
- parse(s: string): half;
2074
- pow(x: half, y: half): half;
2075
- radiansToDegrees(radians: half): half;
2076
- reciprocalEstimate(x: half): half;
2077
- reciprocalSqrtEstimate(x: half): half;
2078
- rootN(x: half, n: int): half;
2079
- round(x: half, digits: int, mode: MidpointRounding): half;
2080
- round(x: half, digits: int): half;
2081
- round(x: half, mode: MidpointRounding): half;
2082
- round(x: half): half;
2083
- scaleB(x: half, n: int): half;
2084
- sign(value: half): int;
2085
- sin(x: half): half;
2086
- sinCos(x: half): ValueTuple_2<CLROf<half>, CLROf<half>>;
2087
- sinCosPi(x: half): ValueTuple_2<CLROf<half>, CLROf<half>>;
2088
- sinh(x: half): half;
2089
- sinPi(x: half): half;
2090
- sqrt(x: half): half;
2091
- tan(x: half): half;
2092
- tanh(x: half): half;
2093
- tanPi(x: half): half;
2094
- truncate(x: half): half;
2095
- tryParse(utf8Text: ReadOnlySpan_1<CLROf<byte>>, style: NumberStyles, provider: IFormatProvider, result: { value: ref<half> }): boolean;
2096
- tryParse(utf8Text: ReadOnlySpan_1<CLROf<byte>>, result: { value: ref<half> }): boolean;
2097
- tryParse(utf8Text: ReadOnlySpan_1<CLROf<byte>>, provider: IFormatProvider, result: { value: ref<half> }): boolean;
2098
- tryParse(s: ReadOnlySpan_1<CLROf<char>>, style: NumberStyles, provider: IFormatProvider, result: { value: ref<half> }): boolean;
2099
- tryParse(s: ReadOnlySpan_1<CLROf<char>>, result: { value: ref<half> }): boolean;
2100
- tryParse(s: ReadOnlySpan_1<CLROf<char>>, provider: IFormatProvider, result: { value: ref<half> }): boolean;
2101
- tryParse(s: string, style: NumberStyles, provider: IFormatProvider, result: { value: ref<half> }): boolean;
2102
- tryParse(s: string, result: { value: ref<half> }): boolean;
2103
- tryParse(s: string, provider: IFormatProvider, result: { value: ref<half> }): boolean;
2104
- };
2105
-
2106
-
2107
- export interface __Half$views {
2108
- As_IComparable(): IComparable$instance;
2109
- As_IComparable_1(): IComparable_1$instance<CLROf<half>>;
2110
- As_IEquatable_1(): IEquatable_1$instance<CLROf<half>>;
2111
- As_IFormattable(): IFormattable$instance;
2112
- As_IParsable_1(): IParsable_1$instance<CLROf<half>>;
2113
- As_ISpanFormattable(): ISpanFormattable$instance;
2114
- As_ISpanParsable_1(): ISpanParsable_1$instance<CLROf<half>>;
2115
- As_IUtf8SpanFormattable(): IUtf8SpanFormattable$instance;
2116
- As_IUtf8SpanParsable_1(): IUtf8SpanParsable_1$instance<CLROf<half>>;
2117
- As_IAdditiveIdentity_2(): System_Numerics_Internal.IAdditiveIdentity_2$instance<CLROf<half>, CLROf<half>>;
2118
- As_IFloatingPoint_1(): System_Numerics_Internal.IFloatingPoint_1$instance<CLROf<half>>;
2119
- As_IMinMaxValue_1(): System_Numerics_Internal.IMinMaxValue_1$instance<CLROf<half>>;
2120
- As_INumber_1(): System_Numerics_Internal.INumber_1$instance<CLROf<half>>;
2121
- As_INumberBase_1(): System_Numerics_Internal.INumberBase_1$instance<CLROf<half>>;
2122
- As_IRootFunctions_1(): System_Numerics_Internal.IRootFunctions_1$instance<CLROf<half>>;
2123
- As_ITrigonometricFunctions_1(): System_Numerics_Internal.ITrigonometricFunctions_1$instance<CLROf<half>>;
2124
-
2125
- // Structural method bridges for numeric interface constraints
2126
- Equals(other: Half): boolean;
2127
- CompareTo(obj: unknown): int;
2128
- ToString(format: string, formatProvider: IFormatProvider): string;
2129
- TryFormat(destination: Span_1<CLROf<char>>, charsWritten: { value: ref<int> }, format: ReadOnlySpan_1<CLROf<char>>, provider: IFormatProvider): boolean;
2130
- GetExponentByteCount(): int;
2131
- GetExponentShortestBitLength(): int;
2132
- TryWriteExponentBigEndian(destination: Span_1<CLROf<byte>>, bytesWritten: { value: ref<int> }): boolean;
2133
- WriteExponentBigEndian(destination: byte[], startIndex: int): int;
2134
- WriteExponentBigEndian(destination: byte[]): int;
2135
- WriteExponentBigEndian(destination: Span_1<CLROf<byte>>): int;
2136
- }
2137
-
2138
- export interface Half$instance extends System_Numerics_Internal.IMinMaxValue_1$instance<CLROf<half>> {}
2139
-
2140
- export type Half = Half$instance & __Half$views;
2141
-
1415
+ export type Half = half;
2142
1416
 
2143
1417
  export interface HashCode$instance {
2144
1418
  add<T>(value: T): void;
@@ -2195,502 +1469,15 @@ export interface __Index$views {
2195
1469
  export type Index = Index$instance & __Index$views;
2196
1470
 
2197
1471
 
2198
- export interface Int128$instance extends IBitwiseOperators_3<CLROf<int128>, CLROf<int128>, CLROf<int128>>, IComparisonOperators_3<CLROf<int128>, CLROf<int128>, CLROf<boolean>>, IEqualityOperators_3<CLROf<int128>, CLROf<int128>, CLROf<boolean>>, IModulusOperators_3<CLROf<int128>, CLROf<int128>, CLROf<int128>>, IAdditionOperators_3<CLROf<int128>, CLROf<int128>, CLROf<int128>>, IDecrementOperators_1<CLROf<int128>>, IDivisionOperators_3<CLROf<int128>, CLROf<int128>, CLROf<int128>>, IIncrementOperators_1<CLROf<int128>>, IMultiplyOperators_3<CLROf<int128>, CLROf<int128>, CLROf<int128>>, ISubtractionOperators_3<CLROf<int128>, CLROf<int128>, CLROf<int128>>, IUnaryPlusOperators_2<CLROf<int128>, CLROf<int128>>, IUnaryNegationOperators_2<CLROf<int128>, CLROf<int128>>, IShiftOperators_3<CLROf<int128>, CLROf<int>, CLROf<int128>> {
2199
- compareTo(value: unknown): int;
2200
- compareTo(value: int128): int;
2201
- equals(obj: unknown): boolean;
2202
- equals(other: int128): boolean;
2203
- getHashCode(): int;
2204
- toString(): string;
2205
- toString(provider: IFormatProvider): string;
2206
- toString(format: string): string;
2207
- toString(format: string, provider: IFormatProvider): string;
2208
- tryFormat(destination: Span_1<CLROf<char>>, charsWritten: { value: ref<int> }, format?: ReadOnlySpan_1<CLROf<char>>, provider?: IFormatProvider): boolean;
2209
- tryFormat(utf8Destination: Span_1<CLROf<byte>>, bytesWritten: { value: ref<int> }, format?: ReadOnlySpan_1<CLROf<char>>, provider?: IFormatProvider): boolean;
2210
- }
2211
-
2212
-
2213
- export const Int128: {
2214
- new(upper: ulong, lower: ulong): Int128$instance;
2215
- readonly minValue: int128;
2216
- readonly maxValue: int128;
2217
- readonly one: int128;
2218
- readonly zero: int128;
2219
- readonly negativeOne: int128;
2220
- abs(value: int128): int128;
2221
- bigMul(left: int128, right: int128, lower: { value: ref<int128> }): int128;
2222
- clamp(value: int128, min: int128, max: int128): int128;
2223
- copySign(value: int128, sign: int128): int128;
2224
- createChecked<TOther extends INumberBase_1<TOther>>(value: TOther): int128;
2225
- createSaturating<TOther extends INumberBase_1<TOther>>(value: TOther): int128;
2226
- createTruncating<TOther extends INumberBase_1<TOther>>(value: TOther): int128;
2227
- divRem(left: int128, right: int128): ValueTuple_2<CLROf<int128>, CLROf<int128>>;
2228
- isEvenInteger(value: int128): boolean;
2229
- isNegative(value: int128): boolean;
2230
- isOddInteger(value: int128): boolean;
2231
- isPositive(value: int128): boolean;
2232
- isPow2(value: int128): boolean;
2233
- leadingZeroCount(value: int128): int128;
2234
- log2(value: int128): int128;
2235
- max(x: int128, y: int128): int128;
2236
- maxMagnitude(x: int128, y: int128): int128;
2237
- min(x: int128, y: int128): int128;
2238
- minMagnitude(x: int128, y: int128): int128;
2239
- parse(utf8Text: ReadOnlySpan_1<CLROf<byte>>, style?: NumberStyles, provider?: IFormatProvider): int128;
2240
- parse(utf8Text: ReadOnlySpan_1<CLROf<byte>>, provider: IFormatProvider): int128;
2241
- parse(s: ReadOnlySpan_1<CLROf<char>>, style?: NumberStyles, provider?: IFormatProvider): int128;
2242
- parse(s: ReadOnlySpan_1<CLROf<char>>, provider: IFormatProvider): int128;
2243
- parse(s: string, style: NumberStyles, provider: IFormatProvider): int128;
2244
- parse(s: string, style: NumberStyles): int128;
2245
- parse(s: string, provider: IFormatProvider): int128;
2246
- parse(s: string): int128;
2247
- popCount(value: int128): int128;
2248
- rotateLeft(value: int128, rotateAmount: int): int128;
2249
- rotateRight(value: int128, rotateAmount: int): int128;
2250
- sign(value: int128): int;
2251
- trailingZeroCount(value: int128): int128;
2252
- tryParse(utf8Text: ReadOnlySpan_1<CLROf<byte>>, style: NumberStyles, provider: IFormatProvider, result: { value: ref<int128> }): boolean;
2253
- tryParse(utf8Text: ReadOnlySpan_1<CLROf<byte>>, provider: IFormatProvider, result: { value: ref<int128> }): boolean;
2254
- tryParse(utf8Text: ReadOnlySpan_1<CLROf<byte>>, result: { value: ref<int128> }): boolean;
2255
- tryParse(s: ReadOnlySpan_1<CLROf<char>>, style: NumberStyles, provider: IFormatProvider, result: { value: ref<int128> }): boolean;
2256
- tryParse(s: ReadOnlySpan_1<CLROf<char>>, provider: IFormatProvider, result: { value: ref<int128> }): boolean;
2257
- tryParse(s: ReadOnlySpan_1<CLROf<char>>, result: { value: ref<int128> }): boolean;
2258
- tryParse(s: string, style: NumberStyles, provider: IFormatProvider, result: { value: ref<int128> }): boolean;
2259
- tryParse(s: string, provider: IFormatProvider, result: { value: ref<int128> }): boolean;
2260
- tryParse(s: string, result: { value: ref<int128> }): boolean;
2261
- };
2262
-
2263
-
2264
- export interface __Int128$views {
2265
- As_IComparable(): IComparable$instance;
2266
- As_IComparable_1(): IComparable_1$instance<CLROf<int128>>;
2267
- As_IEquatable_1(): IEquatable_1$instance<CLROf<int128>>;
2268
- As_IFormattable(): IFormattable$instance;
2269
- As_IParsable_1(): IParsable_1$instance<CLROf<int128>>;
2270
- As_ISpanParsable_1(): ISpanParsable_1$instance<CLROf<int128>>;
2271
- As_IUtf8SpanFormattable(): IUtf8SpanFormattable$instance;
2272
- As_IUtf8SpanParsable_1(): IUtf8SpanParsable_1$instance<CLROf<int128>>;
2273
- As_IAdditiveIdentity_2(): System_Numerics_Internal.IAdditiveIdentity_2$instance<CLROf<int128>, CLROf<int128>>;
2274
- As_IBinaryInteger_1(): System_Numerics_Internal.IBinaryInteger_1$instance<CLROf<int128>>;
2275
- As_IMinMaxValue_1(): System_Numerics_Internal.IMinMaxValue_1$instance<CLROf<int128>>;
2276
- As_INumber_1(): System_Numerics_Internal.INumber_1$instance<CLROf<int128>>;
2277
- As_INumberBase_1(): System_Numerics_Internal.INumberBase_1$instance<CLROf<int128>>;
2278
-
2279
- // Structural method bridges for numeric interface constraints
2280
- Equals(other: Int128): boolean;
2281
- CompareTo(obj: unknown): int;
2282
- ToString(format: string, formatProvider: IFormatProvider): string;
2283
- TryFormat(destination: Span_1<CLROf<char>>, charsWritten: { value: ref<int> }, format: ReadOnlySpan_1<CLROf<char>>, provider: IFormatProvider): boolean;
2284
- GetByteCount(): int;
2285
- TryWriteBigEndian(destination: Span_1<CLROf<byte>>, bytesWritten: { value: ref<int> }): boolean;
2286
- WriteBigEndian(destination: byte[], startIndex: int): int;
2287
- WriteBigEndian(destination: byte[]): int;
2288
- WriteBigEndian(destination: Span_1<CLROf<byte>>): int;
2289
- }
2290
-
2291
- export interface Int128$instance extends System_Numerics_Internal.IMinMaxValue_1$instance<CLROf<int128>> {}
2292
-
2293
- export type Int128 = Int128$instance & __Int128$views;
2294
-
2295
-
2296
- export interface Int16$instance extends IBitwiseOperators_3<CLROf<short>, CLROf<short>, CLROf<short>>, IComparisonOperators_3<CLROf<short>, CLROf<short>, CLROf<boolean>>, IEqualityOperators_3<CLROf<short>, CLROf<short>, CLROf<boolean>>, IModulusOperators_3<CLROf<short>, CLROf<short>, CLROf<short>>, IAdditionOperators_3<CLROf<short>, CLROf<short>, CLROf<short>>, IDecrementOperators_1<CLROf<short>>, IDivisionOperators_3<CLROf<short>, CLROf<short>, CLROf<short>>, IIncrementOperators_1<CLROf<short>>, IMultiplyOperators_3<CLROf<short>, CLROf<short>, CLROf<short>>, ISubtractionOperators_3<CLROf<short>, CLROf<short>, CLROf<short>>, IUnaryPlusOperators_2<CLROf<short>, CLROf<short>>, IUnaryNegationOperators_2<CLROf<short>, CLROf<short>>, IShiftOperators_3<CLROf<short>, CLROf<int>, CLROf<short>> {
2297
- compareTo(value: unknown): int;
2298
- compareTo(value: short): int;
2299
- equals(obj: unknown): boolean;
2300
- equals(obj: short): boolean;
2301
- getHashCode(): int;
2302
- getTypeCode(): TypeCode;
2303
- toString(): string;
2304
- toString(provider: IFormatProvider): string;
2305
- toString(format: string): string;
2306
- toString(format: string, provider: IFormatProvider): string;
2307
- tryFormat(destination: Span_1<CLROf<char>>, charsWritten: { value: ref<int> }, format?: ReadOnlySpan_1<CLROf<char>>, provider?: IFormatProvider): boolean;
2308
- tryFormat(utf8Destination: Span_1<CLROf<byte>>, bytesWritten: { value: ref<int> }, format?: ReadOnlySpan_1<CLROf<char>>, provider?: IFormatProvider): boolean;
2309
- }
2310
-
2311
-
2312
- export const Int16: {
2313
- new(): Int16$instance;
2314
- readonly maxValue: short;
2315
- readonly minValue: short;
2316
- abs(value: short): short;
2317
- clamp(value: short, min: short, max: short): short;
2318
- copySign(value: short, sign: short): short;
2319
- createChecked<TOther extends INumberBase_1<TOther>>(value: TOther): short;
2320
- createSaturating<TOther extends INumberBase_1<TOther>>(value: TOther): short;
2321
- createTruncating<TOther extends INumberBase_1<TOther>>(value: TOther): short;
2322
- divRem(left: short, right: short): ValueTuple_2<CLROf<short>, CLROf<short>>;
2323
- isEvenInteger(value: short): boolean;
2324
- isNegative(value: short): boolean;
2325
- isOddInteger(value: short): boolean;
2326
- isPositive(value: short): boolean;
2327
- isPow2(value: short): boolean;
2328
- leadingZeroCount(value: short): short;
2329
- log2(value: short): short;
2330
- max(x: short, y: short): short;
2331
- maxMagnitude(x: short, y: short): short;
2332
- min(x: short, y: short): short;
2333
- minMagnitude(x: short, y: short): short;
2334
- parse(utf8Text: ReadOnlySpan_1<CLROf<byte>>, style?: NumberStyles, provider?: IFormatProvider): short;
2335
- parse(utf8Text: ReadOnlySpan_1<CLROf<byte>>, provider: IFormatProvider): short;
2336
- parse(s: ReadOnlySpan_1<CLROf<char>>, style?: NumberStyles, provider?: IFormatProvider): short;
2337
- parse(s: ReadOnlySpan_1<CLROf<char>>, provider: IFormatProvider): short;
2338
- parse(s: string, style: NumberStyles, provider: IFormatProvider): short;
2339
- parse(s: string, style: NumberStyles): short;
2340
- parse(s: string, provider: IFormatProvider): short;
2341
- parse(s: string): short;
2342
- popCount(value: short): short;
2343
- rotateLeft(value: short, rotateAmount: int): short;
2344
- rotateRight(value: short, rotateAmount: int): short;
2345
- sign(value: short): int;
2346
- trailingZeroCount(value: short): short;
2347
- tryParse(utf8Text: ReadOnlySpan_1<CLROf<byte>>, style: NumberStyles, provider: IFormatProvider, result: { value: ref<short> }): boolean;
2348
- tryParse(utf8Text: ReadOnlySpan_1<CLROf<byte>>, provider: IFormatProvider, result: { value: ref<short> }): boolean;
2349
- tryParse(utf8Text: ReadOnlySpan_1<CLROf<byte>>, result: { value: ref<short> }): boolean;
2350
- tryParse(s: ReadOnlySpan_1<CLROf<char>>, style: NumberStyles, provider: IFormatProvider, result: { value: ref<short> }): boolean;
2351
- tryParse(s: ReadOnlySpan_1<CLROf<char>>, provider: IFormatProvider, result: { value: ref<short> }): boolean;
2352
- tryParse(s: ReadOnlySpan_1<CLROf<char>>, result: { value: ref<short> }): boolean;
2353
- tryParse(s: string, style: NumberStyles, provider: IFormatProvider, result: { value: ref<short> }): boolean;
2354
- tryParse(s: string, provider: IFormatProvider, result: { value: ref<short> }): boolean;
2355
- tryParse(s: string, result: { value: ref<short> }): boolean;
2356
- };
2357
-
2358
-
2359
- export interface __Int16$views {
2360
- As_IComparable(): IComparable$instance;
2361
- As_IComparable_1(): IComparable_1$instance<CLROf<short>>;
2362
- As_IConvertible(): IConvertible$instance;
2363
- As_IEquatable_1(): IEquatable_1$instance<CLROf<short>>;
2364
- As_IFormattable(): IFormattable$instance;
2365
- As_IParsable_1(): IParsable_1$instance<CLROf<short>>;
2366
- As_ISpanFormattable(): ISpanFormattable$instance;
2367
- As_ISpanParsable_1(): ISpanParsable_1$instance<CLROf<short>>;
2368
- As_IUtf8SpanFormattable(): IUtf8SpanFormattable$instance;
2369
- As_IUtf8SpanParsable_1(): IUtf8SpanParsable_1$instance<CLROf<short>>;
2370
- As_IAdditiveIdentity_2(): System_Numerics_Internal.IAdditiveIdentity_2$instance<CLROf<short>, CLROf<short>>;
2371
- As_IBinaryInteger_1(): System_Numerics_Internal.IBinaryInteger_1$instance<CLROf<short>>;
2372
- As_IMinMaxValue_1(): System_Numerics_Internal.IMinMaxValue_1$instance<CLROf<short>>;
2373
- As_INumber_1(): System_Numerics_Internal.INumber_1$instance<CLROf<short>>;
2374
- As_INumberBase_1(): System_Numerics_Internal.INumberBase_1$instance<CLROf<short>>;
2375
-
2376
- // Structural method bridges for numeric interface constraints
2377
- Equals(other: Int16): boolean;
2378
- CompareTo(obj: unknown): int;
2379
- ToString(format: string, formatProvider: IFormatProvider): string;
2380
- TryFormat(destination: Span_1<CLROf<char>>, charsWritten: { value: ref<int> }, format: ReadOnlySpan_1<CLROf<char>>, provider: IFormatProvider): boolean;
2381
- GetByteCount(): int;
2382
- TryWriteBigEndian(destination: Span_1<CLROf<byte>>, bytesWritten: { value: ref<int> }): boolean;
2383
- WriteBigEndian(destination: byte[], startIndex: int): int;
2384
- WriteBigEndian(destination: byte[]): int;
2385
- WriteBigEndian(destination: Span_1<CLROf<byte>>): int;
2386
- }
2387
-
2388
- export interface Int16$instance extends System_Numerics_Internal.IMinMaxValue_1$instance<CLROf<short>> {}
2389
-
2390
- export type Int16 = Int16$instance & __Int16$views;
2391
-
2392
-
2393
- export interface Int32$instance extends IBitwiseOperators_3<CLROf<int>, CLROf<int>, CLROf<int>>, IComparisonOperators_3<CLROf<int>, CLROf<int>, CLROf<boolean>>, IEqualityOperators_3<CLROf<int>, CLROf<int>, CLROf<boolean>>, IModulusOperators_3<CLROf<int>, CLROf<int>, CLROf<int>>, IAdditionOperators_3<CLROf<int>, CLROf<int>, CLROf<int>>, IDecrementOperators_1<CLROf<int>>, IDivisionOperators_3<CLROf<int>, CLROf<int>, CLROf<int>>, IIncrementOperators_1<CLROf<int>>, IMultiplyOperators_3<CLROf<int>, CLROf<int>, CLROf<int>>, ISubtractionOperators_3<CLROf<int>, CLROf<int>, CLROf<int>>, IUnaryPlusOperators_2<CLROf<int>, CLROf<int>>, IUnaryNegationOperators_2<CLROf<int>, CLROf<int>>, IShiftOperators_3<CLROf<int>, CLROf<int>, CLROf<int>> {
2394
- compareTo(value: unknown): int;
2395
- compareTo(value: int): int;
2396
- equals(obj: unknown): boolean;
2397
- equals(obj: int): boolean;
2398
- getHashCode(): int;
2399
- getTypeCode(): TypeCode;
2400
- toString(): string;
2401
- toString(format: string): string;
2402
- toString(provider: IFormatProvider): string;
2403
- toString(format: string, provider: IFormatProvider): string;
2404
- tryFormat(destination: Span_1<CLROf<char>>, charsWritten: { value: ref<int> }, format?: ReadOnlySpan_1<CLROf<char>>, provider?: IFormatProvider): boolean;
2405
- tryFormat(utf8Destination: Span_1<CLROf<byte>>, bytesWritten: { value: ref<int> }, format?: ReadOnlySpan_1<CLROf<char>>, provider?: IFormatProvider): boolean;
2406
- }
2407
-
2408
-
2409
- export const Int32: {
2410
- new(): Int32$instance;
2411
- readonly maxValue: int;
2412
- readonly minValue: int;
2413
- abs(value: int): int;
2414
- bigMul(left: int, right: int): long;
2415
- clamp(value: int, min: int, max: int): int;
2416
- copySign(value: int, sign: int): int;
2417
- createChecked<TOther extends INumberBase_1<TOther>>(value: TOther): int;
2418
- createSaturating<TOther extends INumberBase_1<TOther>>(value: TOther): int;
2419
- createTruncating<TOther extends INumberBase_1<TOther>>(value: TOther): int;
2420
- divRem(left: int, right: int): ValueTuple_2<CLROf<int>, CLROf<int>>;
2421
- isEvenInteger(value: int): boolean;
2422
- isNegative(value: int): boolean;
2423
- isOddInteger(value: int): boolean;
2424
- isPositive(value: int): boolean;
2425
- isPow2(value: int): boolean;
2426
- leadingZeroCount(value: int): int;
2427
- log2(value: int): int;
2428
- max(x: int, y: int): int;
2429
- maxMagnitude(x: int, y: int): int;
2430
- min(x: int, y: int): int;
2431
- minMagnitude(x: int, y: int): int;
2432
- parse(utf8Text: ReadOnlySpan_1<CLROf<byte>>, style?: NumberStyles, provider?: IFormatProvider): int;
2433
- parse(utf8Text: ReadOnlySpan_1<CLROf<byte>>, provider: IFormatProvider): int;
2434
- parse(s: ReadOnlySpan_1<CLROf<char>>, style?: NumberStyles, provider?: IFormatProvider): int;
2435
- parse(s: ReadOnlySpan_1<CLROf<char>>, provider: IFormatProvider): int;
2436
- parse(s: string, style: NumberStyles, provider: IFormatProvider): int;
2437
- parse(s: string, style: NumberStyles): int;
2438
- parse(s: string, provider: IFormatProvider): int;
2439
- parse(s: string): int;
2440
- popCount(value: int): int;
2441
- rotateLeft(value: int, rotateAmount: int): int;
2442
- rotateRight(value: int, rotateAmount: int): int;
2443
- sign(value: int): int;
2444
- trailingZeroCount(value: int): int;
2445
- tryParse(utf8Text: ReadOnlySpan_1<CLROf<byte>>, style: NumberStyles, provider: IFormatProvider, result: { value: ref<int> }): boolean;
2446
- tryParse(utf8Text: ReadOnlySpan_1<CLROf<byte>>, provider: IFormatProvider, result: { value: ref<int> }): boolean;
2447
- tryParse(utf8Text: ReadOnlySpan_1<CLROf<byte>>, result: { value: ref<int> }): boolean;
2448
- tryParse(s: ReadOnlySpan_1<CLROf<char>>, style: NumberStyles, provider: IFormatProvider, result: { value: ref<int> }): boolean;
2449
- tryParse(s: ReadOnlySpan_1<CLROf<char>>, provider: IFormatProvider, result: { value: ref<int> }): boolean;
2450
- tryParse(s: ReadOnlySpan_1<CLROf<char>>, result: { value: ref<int> }): boolean;
2451
- tryParse(s: string, style: NumberStyles, provider: IFormatProvider, result: { value: ref<int> }): boolean;
2452
- tryParse(s: string, provider: IFormatProvider, result: { value: ref<int> }): boolean;
2453
- tryParse(s: string, result: { value: ref<int> }): boolean;
2454
- };
2455
-
2456
-
2457
- export interface __Int32$views {
2458
- As_IComparable(): IComparable$instance;
2459
- As_IComparable_1(): IComparable_1$instance<CLROf<int>>;
2460
- As_IConvertible(): IConvertible$instance;
2461
- As_IEquatable_1(): IEquatable_1$instance<CLROf<int>>;
2462
- As_IFormattable(): IFormattable$instance;
2463
- As_IParsable_1(): IParsable_1$instance<CLROf<int>>;
2464
- As_ISpanFormattable(): ISpanFormattable$instance;
2465
- As_ISpanParsable_1(): ISpanParsable_1$instance<CLROf<int>>;
2466
- As_IUtf8SpanFormattable(): IUtf8SpanFormattable$instance;
2467
- As_IUtf8SpanParsable_1(): IUtf8SpanParsable_1$instance<CLROf<int>>;
2468
- As_IAdditiveIdentity_2(): System_Numerics_Internal.IAdditiveIdentity_2$instance<CLROf<int>, CLROf<int>>;
2469
- As_IBinaryInteger_1(): System_Numerics_Internal.IBinaryInteger_1$instance<CLROf<int>>;
2470
- As_IMinMaxValue_1(): System_Numerics_Internal.IMinMaxValue_1$instance<CLROf<int>>;
2471
- As_INumber_1(): System_Numerics_Internal.INumber_1$instance<CLROf<int>>;
2472
- As_INumberBase_1(): System_Numerics_Internal.INumberBase_1$instance<CLROf<int>>;
2473
-
2474
- // Structural method bridges for numeric interface constraints
2475
- Equals(other: Int32): boolean;
2476
- CompareTo(obj: unknown): int;
2477
- ToString(format: string, formatProvider: IFormatProvider): string;
2478
- TryFormat(destination: Span_1<CLROf<char>>, charsWritten: { value: ref<int> }, format: ReadOnlySpan_1<CLROf<char>>, provider: IFormatProvider): boolean;
2479
- GetByteCount(): int;
2480
- TryWriteBigEndian(destination: Span_1<CLROf<byte>>, bytesWritten: { value: ref<int> }): boolean;
2481
- WriteBigEndian(destination: byte[], startIndex: int): int;
2482
- WriteBigEndian(destination: byte[]): int;
2483
- WriteBigEndian(destination: Span_1<CLROf<byte>>): int;
2484
- }
2485
-
2486
- export interface Int32$instance extends System_Numerics_Internal.IMinMaxValue_1$instance<CLROf<int>> {}
2487
-
2488
- export type Int32 = Int32$instance & __Int32$views;
2489
-
2490
-
2491
- export interface Int64$instance extends IBitwiseOperators_3<CLROf<long>, CLROf<long>, CLROf<long>>, IComparisonOperators_3<CLROf<long>, CLROf<long>, CLROf<boolean>>, IEqualityOperators_3<CLROf<long>, CLROf<long>, CLROf<boolean>>, IModulusOperators_3<CLROf<long>, CLROf<long>, CLROf<long>>, IAdditionOperators_3<CLROf<long>, CLROf<long>, CLROf<long>>, IDecrementOperators_1<CLROf<long>>, IDivisionOperators_3<CLROf<long>, CLROf<long>, CLROf<long>>, IIncrementOperators_1<CLROf<long>>, IMultiplyOperators_3<CLROf<long>, CLROf<long>, CLROf<long>>, ISubtractionOperators_3<CLROf<long>, CLROf<long>, CLROf<long>>, IUnaryPlusOperators_2<CLROf<long>, CLROf<long>>, IUnaryNegationOperators_2<CLROf<long>, CLROf<long>>, IShiftOperators_3<CLROf<long>, CLROf<int>, CLROf<long>> {
2492
- compareTo(value: unknown): int;
2493
- compareTo(value: long): int;
2494
- equals(obj: unknown): boolean;
2495
- equals(obj: long): boolean;
2496
- getHashCode(): int;
2497
- getTypeCode(): TypeCode;
2498
- toString(): string;
2499
- toString(provider: IFormatProvider): string;
2500
- toString(format: string): string;
2501
- toString(format: string, provider: IFormatProvider): string;
2502
- tryFormat(destination: Span_1<CLROf<char>>, charsWritten: { value: ref<int> }, format?: ReadOnlySpan_1<CLROf<char>>, provider?: IFormatProvider): boolean;
2503
- tryFormat(utf8Destination: Span_1<CLROf<byte>>, bytesWritten: { value: ref<int> }, format?: ReadOnlySpan_1<CLROf<char>>, provider?: IFormatProvider): boolean;
2504
- }
2505
-
2506
-
2507
- export const Int64: {
2508
- new(): Int64$instance;
2509
- readonly maxValue: long;
2510
- readonly minValue: long;
2511
- abs(value: long): long;
2512
- bigMul(left: long, right: long): int128;
2513
- clamp(value: long, min: long, max: long): long;
2514
- copySign(value: long, sign: long): long;
2515
- createChecked<TOther extends INumberBase_1<TOther>>(value: TOther): long;
2516
- createSaturating<TOther extends INumberBase_1<TOther>>(value: TOther): long;
2517
- createTruncating<TOther extends INumberBase_1<TOther>>(value: TOther): long;
2518
- divRem(left: long, right: long): ValueTuple_2<CLROf<long>, CLROf<long>>;
2519
- isEvenInteger(value: long): boolean;
2520
- isNegative(value: long): boolean;
2521
- isOddInteger(value: long): boolean;
2522
- isPositive(value: long): boolean;
2523
- isPow2(value: long): boolean;
2524
- leadingZeroCount(value: long): long;
2525
- log2(value: long): long;
2526
- max(x: long, y: long): long;
2527
- maxMagnitude(x: long, y: long): long;
2528
- min(x: long, y: long): long;
2529
- minMagnitude(x: long, y: long): long;
2530
- parse(utf8Text: ReadOnlySpan_1<CLROf<byte>>, style?: NumberStyles, provider?: IFormatProvider): long;
2531
- parse(utf8Text: ReadOnlySpan_1<CLROf<byte>>, provider: IFormatProvider): long;
2532
- parse(s: ReadOnlySpan_1<CLROf<char>>, style?: NumberStyles, provider?: IFormatProvider): long;
2533
- parse(s: ReadOnlySpan_1<CLROf<char>>, provider: IFormatProvider): long;
2534
- parse(s: string, style: NumberStyles, provider: IFormatProvider): long;
2535
- parse(s: string, style: NumberStyles): long;
2536
- parse(s: string, provider: IFormatProvider): long;
2537
- parse(s: string): long;
2538
- popCount(value: long): long;
2539
- rotateLeft(value: long, rotateAmount: int): long;
2540
- rotateRight(value: long, rotateAmount: int): long;
2541
- sign(value: long): int;
2542
- trailingZeroCount(value: long): long;
2543
- tryParse(utf8Text: ReadOnlySpan_1<CLROf<byte>>, style: NumberStyles, provider: IFormatProvider, result: { value: ref<long> }): boolean;
2544
- tryParse(utf8Text: ReadOnlySpan_1<CLROf<byte>>, provider: IFormatProvider, result: { value: ref<long> }): boolean;
2545
- tryParse(utf8Text: ReadOnlySpan_1<CLROf<byte>>, result: { value: ref<long> }): boolean;
2546
- tryParse(s: ReadOnlySpan_1<CLROf<char>>, style: NumberStyles, provider: IFormatProvider, result: { value: ref<long> }): boolean;
2547
- tryParse(s: ReadOnlySpan_1<CLROf<char>>, provider: IFormatProvider, result: { value: ref<long> }): boolean;
2548
- tryParse(s: ReadOnlySpan_1<CLROf<char>>, result: { value: ref<long> }): boolean;
2549
- tryParse(s: string, style: NumberStyles, provider: IFormatProvider, result: { value: ref<long> }): boolean;
2550
- tryParse(s: string, provider: IFormatProvider, result: { value: ref<long> }): boolean;
2551
- tryParse(s: string, result: { value: ref<long> }): boolean;
2552
- };
2553
-
2554
-
2555
- export interface __Int64$views {
2556
- As_IComparable(): IComparable$instance;
2557
- As_IComparable_1(): IComparable_1$instance<CLROf<long>>;
2558
- As_IConvertible(): IConvertible$instance;
2559
- As_IEquatable_1(): IEquatable_1$instance<CLROf<long>>;
2560
- As_IFormattable(): IFormattable$instance;
2561
- As_IParsable_1(): IParsable_1$instance<CLROf<long>>;
2562
- As_ISpanFormattable(): ISpanFormattable$instance;
2563
- As_ISpanParsable_1(): ISpanParsable_1$instance<CLROf<long>>;
2564
- As_IUtf8SpanFormattable(): IUtf8SpanFormattable$instance;
2565
- As_IUtf8SpanParsable_1(): IUtf8SpanParsable_1$instance<CLROf<long>>;
2566
- As_IAdditiveIdentity_2(): System_Numerics_Internal.IAdditiveIdentity_2$instance<CLROf<long>, CLROf<long>>;
2567
- As_IBinaryInteger_1(): System_Numerics_Internal.IBinaryInteger_1$instance<CLROf<long>>;
2568
- As_IMinMaxValue_1(): System_Numerics_Internal.IMinMaxValue_1$instance<CLROf<long>>;
2569
- As_INumber_1(): System_Numerics_Internal.INumber_1$instance<CLROf<long>>;
2570
- As_INumberBase_1(): System_Numerics_Internal.INumberBase_1$instance<CLROf<long>>;
1472
+ export type Int128 = int128;
2571
1473
 
2572
- // Structural method bridges for numeric interface constraints
2573
- Equals(other: Int64): boolean;
2574
- CompareTo(obj: unknown): int;
2575
- ToString(format: string, formatProvider: IFormatProvider): string;
2576
- TryFormat(destination: Span_1<CLROf<char>>, charsWritten: { value: ref<int> }, format: ReadOnlySpan_1<CLROf<char>>, provider: IFormatProvider): boolean;
2577
- GetByteCount(): int;
2578
- TryWriteBigEndian(destination: Span_1<CLROf<byte>>, bytesWritten: { value: ref<int> }): boolean;
2579
- WriteBigEndian(destination: byte[], startIndex: int): int;
2580
- WriteBigEndian(destination: byte[]): int;
2581
- WriteBigEndian(destination: Span_1<CLROf<byte>>): int;
2582
- }
1474
+ export type Int16 = short;
2583
1475
 
2584
- export interface Int64$instance extends System_Numerics_Internal.IMinMaxValue_1$instance<CLROf<long>> {}
1476
+ export type Int32 = int;
2585
1477
 
2586
- export type Int64 = Int64$instance & __Int64$views;
2587
-
2588
-
2589
- export interface IntPtr$instance extends IBitwiseOperators_3<CLROf<nint>, CLROf<nint>, CLROf<nint>>, IComparisonOperators_3<CLROf<nint>, CLROf<nint>, CLROf<boolean>>, IEqualityOperators_3<CLROf<nint>, CLROf<nint>, CLROf<boolean>>, IModulusOperators_3<CLROf<nint>, CLROf<nint>, CLROf<nint>>, IAdditionOperators_3<CLROf<nint>, CLROf<nint>, CLROf<nint>>, IDecrementOperators_1<CLROf<nint>>, IDivisionOperators_3<CLROf<nint>, CLROf<nint>, CLROf<nint>>, IIncrementOperators_1<CLROf<nint>>, IMultiplyOperators_3<CLROf<nint>, CLROf<nint>, CLROf<nint>>, ISubtractionOperators_3<CLROf<nint>, CLROf<nint>, CLROf<nint>>, IUnaryPlusOperators_2<CLROf<nint>, CLROf<nint>>, IUnaryNegationOperators_2<CLROf<nint>, CLROf<nint>>, IShiftOperators_3<CLROf<nint>, CLROf<int>, CLROf<nint>> {
2590
- compareTo(value: unknown): int;
2591
- compareTo(value: nint): int;
2592
- equals(obj: unknown): boolean;
2593
- equals(other: nint): boolean;
2594
- getHashCode(): int;
2595
- toInt32(): int;
2596
- toInt64(): long;
2597
- toPointer(): ptr<void>;
2598
- toString(): string;
2599
- toString(format: string): string;
2600
- toString(provider: IFormatProvider): string;
2601
- toString(format: string, provider: IFormatProvider): string;
2602
- tryFormat(destination: Span_1<CLROf<char>>, charsWritten: { value: ref<int> }, format?: ReadOnlySpan_1<CLROf<char>>, provider?: IFormatProvider): boolean;
2603
- tryFormat(utf8Destination: Span_1<CLROf<byte>>, bytesWritten: { value: ref<int> }, format?: ReadOnlySpan_1<CLROf<char>>, provider?: IFormatProvider): boolean;
2604
- }
2605
-
2606
-
2607
- export const IntPtr: {
2608
- new(value: int): IntPtr$instance;
2609
- new(value: long): IntPtr$instance;
2610
- new(value: ptr<void>): IntPtr$instance;
2611
- readonly zero: nint;
2612
- readonly size: int;
2613
- readonly maxValue: nint;
2614
- readonly minValue: nint;
2615
- abs(value: nint): nint;
2616
- add(pointer: nint, offset: int): nint;
2617
- bigMul(left: nint, right: nint, lower: { value: ref<nint> }): nint;
2618
- clamp(value: nint, min: nint, max: nint): nint;
2619
- copySign(value: nint, sign: nint): nint;
2620
- createChecked<TOther extends INumberBase_1<TOther>>(value: TOther): nint;
2621
- createSaturating<TOther extends INumberBase_1<TOther>>(value: TOther): nint;
2622
- createTruncating<TOther extends INumberBase_1<TOther>>(value: TOther): nint;
2623
- divRem(left: nint, right: nint): ValueTuple_2<CLROf<nint>, CLROf<nint>>;
2624
- isEvenInteger(value: nint): boolean;
2625
- isNegative(value: nint): boolean;
2626
- isOddInteger(value: nint): boolean;
2627
- isPositive(value: nint): boolean;
2628
- isPow2(value: nint): boolean;
2629
- leadingZeroCount(value: nint): nint;
2630
- log2(value: nint): nint;
2631
- max(x: nint, y: nint): nint;
2632
- maxMagnitude(x: nint, y: nint): nint;
2633
- min(x: nint, y: nint): nint;
2634
- minMagnitude(x: nint, y: nint): nint;
2635
- parse(utf8Text: ReadOnlySpan_1<CLROf<byte>>, style?: NumberStyles, provider?: IFormatProvider): nint;
2636
- parse(utf8Text: ReadOnlySpan_1<CLROf<byte>>, provider: IFormatProvider): nint;
2637
- parse(s: ReadOnlySpan_1<CLROf<char>>, style?: NumberStyles, provider?: IFormatProvider): nint;
2638
- parse(s: ReadOnlySpan_1<CLROf<char>>, provider: IFormatProvider): nint;
2639
- parse(s: string, style: NumberStyles, provider: IFormatProvider): nint;
2640
- parse(s: string, style: NumberStyles): nint;
2641
- parse(s: string, provider: IFormatProvider): nint;
2642
- parse(s: string): nint;
2643
- popCount(value: nint): nint;
2644
- rotateLeft(value: nint, rotateAmount: int): nint;
2645
- rotateRight(value: nint, rotateAmount: int): nint;
2646
- sign(value: nint): int;
2647
- subtract(pointer: nint, offset: int): nint;
2648
- trailingZeroCount(value: nint): nint;
2649
- tryParse(utf8Text: ReadOnlySpan_1<CLROf<byte>>, style: NumberStyles, provider: IFormatProvider, result: { value: ref<nint> }): boolean;
2650
- tryParse(utf8Text: ReadOnlySpan_1<CLROf<byte>>, provider: IFormatProvider, result: { value: ref<nint> }): boolean;
2651
- tryParse(utf8Text: ReadOnlySpan_1<CLROf<byte>>, result: { value: ref<nint> }): boolean;
2652
- tryParse(s: ReadOnlySpan_1<CLROf<char>>, style: NumberStyles, provider: IFormatProvider, result: { value: ref<nint> }): boolean;
2653
- tryParse(s: ReadOnlySpan_1<CLROf<char>>, provider: IFormatProvider, result: { value: ref<nint> }): boolean;
2654
- tryParse(s: ReadOnlySpan_1<CLROf<char>>, result: { value: ref<nint> }): boolean;
2655
- tryParse(s: string, style: NumberStyles, provider: IFormatProvider, result: { value: ref<nint> }): boolean;
2656
- tryParse(s: string, provider: IFormatProvider, result: { value: ref<nint> }): boolean;
2657
- tryParse(s: string, result: { value: ref<nint> }): boolean;
2658
- };
2659
-
2660
-
2661
- export interface __IntPtr$views {
2662
- As_IComparable(): IComparable$instance;
2663
- As_IComparable_1(): IComparable_1$instance<CLROf<nint>>;
2664
- As_IEquatable_1(): IEquatable_1$instance<CLROf<nint>>;
2665
- As_IFormattable(): IFormattable$instance;
2666
- As_IParsable_1(): IParsable_1$instance<CLROf<nint>>;
2667
- As_ISpanFormattable(): ISpanFormattable$instance;
2668
- As_ISpanParsable_1(): ISpanParsable_1$instance<CLROf<nint>>;
2669
- As_IUtf8SpanFormattable(): IUtf8SpanFormattable$instance;
2670
- As_IUtf8SpanParsable_1(): IUtf8SpanParsable_1$instance<CLROf<nint>>;
2671
- As_IAdditiveIdentity_2(): System_Numerics_Internal.IAdditiveIdentity_2$instance<CLROf<nint>, CLROf<nint>>;
2672
- As_IBinaryInteger_1(): System_Numerics_Internal.IBinaryInteger_1$instance<CLROf<nint>>;
2673
- As_IMinMaxValue_1(): System_Numerics_Internal.IMinMaxValue_1$instance<CLROf<nint>>;
2674
- As_INumber_1(): System_Numerics_Internal.INumber_1$instance<CLROf<nint>>;
2675
- As_INumberBase_1(): System_Numerics_Internal.INumberBase_1$instance<CLROf<nint>>;
2676
- As_ISerializable(): System_Runtime_Serialization_Internal.ISerializable$instance;
2677
-
2678
- // Structural method bridges for numeric interface constraints
2679
- Equals(other: IntPtr): boolean;
2680
- CompareTo(obj: unknown): int;
2681
- ToString(format: string, formatProvider: IFormatProvider): string;
2682
- TryFormat(destination: Span_1<CLROf<char>>, charsWritten: { value: ref<int> }, format: ReadOnlySpan_1<CLROf<char>>, provider: IFormatProvider): boolean;
2683
- GetByteCount(): int;
2684
- TryWriteBigEndian(destination: Span_1<CLROf<byte>>, bytesWritten: { value: ref<int> }): boolean;
2685
- WriteBigEndian(destination: byte[], startIndex: int): int;
2686
- WriteBigEndian(destination: byte[]): int;
2687
- WriteBigEndian(destination: Span_1<CLROf<byte>>): int;
2688
- }
2689
-
2690
- export interface IntPtr$instance extends System_Numerics_Internal.IMinMaxValue_1$instance<CLROf<nint>>, System_Runtime_Serialization_Internal.ISerializable$instance {}
2691
-
2692
- export type IntPtr = IntPtr$instance & __IntPtr$views;
1478
+ export type Int64 = long;
2693
1479
 
1480
+ export type IntPtr = nint;
2694
1481
 
2695
1482
  export interface Memory_1$instance<T> {
2696
1483
  readonly isEmpty: boolean;
@@ -2726,7 +1513,7 @@ export interface __Memory_1$views<T> {
2726
1513
  export type Memory_1<T> = Memory_1$instance<T> & __Memory_1$views<T>;
2727
1514
 
2728
1515
 
2729
- export interface MemoryExtensions_SpanSplitEnumerator_1$instance<T extends IEquatable_1<T>> {
1516
+ export interface MemoryExtensions_SpanSplitEnumerator_1$instance<T extends (IEquatable_1<T> | number | string | boolean)> {
2730
1517
  readonly current: Range;
2731
1518
  readonly source: ReadOnlySpan_1<T>;
2732
1519
  getEnumerator(): MemoryExtensions_SpanSplitEnumerator_1<T>;
@@ -2736,17 +1523,17 @@ export interface MemoryExtensions_SpanSplitEnumerator_1$instance<T extends IEqua
2736
1523
 
2737
1524
 
2738
1525
  export const MemoryExtensions_SpanSplitEnumerator_1: {
2739
- new<T extends IEquatable_1<T>>(): MemoryExtensions_SpanSplitEnumerator_1$instance<T>;
1526
+ new<T extends (IEquatable_1<T> | number | string | boolean)>(): MemoryExtensions_SpanSplitEnumerator_1$instance<T>;
2740
1527
  };
2741
1528
 
2742
1529
 
2743
- export interface __MemoryExtensions_SpanSplitEnumerator_1$views<T extends IEquatable_1<T>> {
1530
+ export interface __MemoryExtensions_SpanSplitEnumerator_1$views<T extends (IEquatable_1<T> | number | string | boolean)> {
2744
1531
  As_IEnumerator_1(): System_Collections_Generic_Internal.IEnumerator_1$instance<Range>;
2745
1532
  As_IEnumerator(): System_Collections_Internal.IEnumerator$instance;
2746
1533
  As_IDisposable(): IDisposable$instance;
2747
1534
  }
2748
1535
 
2749
- export type MemoryExtensions_SpanSplitEnumerator_1<T extends IEquatable_1<T>> = MemoryExtensions_SpanSplitEnumerator_1$instance<T> & __MemoryExtensions_SpanSplitEnumerator_1$views<T>;
1536
+ export type MemoryExtensions_SpanSplitEnumerator_1<T extends (IEquatable_1<T> | number | string | boolean)> = MemoryExtensions_SpanSplitEnumerator_1$instance<T> & __MemoryExtensions_SpanSplitEnumerator_1$views<T>;
2750
1537
 
2751
1538
 
2752
1539
  export interface MemoryExtensions_TryWriteInterpolatedStringHandler$instance {
@@ -3035,102 +1822,7 @@ export interface RuntimeTypeHandle$instance extends System_Runtime_Serialization
3035
1822
  export type RuntimeTypeHandle = RuntimeTypeHandle$instance & __RuntimeTypeHandle$views;
3036
1823
 
3037
1824
 
3038
- export interface SByte$instance extends IBitwiseOperators_3<CLROf<sbyte>, CLROf<sbyte>, CLROf<sbyte>>, IComparisonOperators_3<CLROf<sbyte>, CLROf<sbyte>, CLROf<boolean>>, IEqualityOperators_3<CLROf<sbyte>, CLROf<sbyte>, CLROf<boolean>>, IModulusOperators_3<CLROf<sbyte>, CLROf<sbyte>, CLROf<sbyte>>, IAdditionOperators_3<CLROf<sbyte>, CLROf<sbyte>, CLROf<sbyte>>, IDecrementOperators_1<CLROf<sbyte>>, IDivisionOperators_3<CLROf<sbyte>, CLROf<sbyte>, CLROf<sbyte>>, IIncrementOperators_1<CLROf<sbyte>>, IMultiplyOperators_3<CLROf<sbyte>, CLROf<sbyte>, CLROf<sbyte>>, ISubtractionOperators_3<CLROf<sbyte>, CLROf<sbyte>, CLROf<sbyte>>, IUnaryPlusOperators_2<CLROf<sbyte>, CLROf<sbyte>>, IUnaryNegationOperators_2<CLROf<sbyte>, CLROf<sbyte>>, IShiftOperators_3<CLROf<sbyte>, CLROf<int>, CLROf<sbyte>> {
3039
- compareTo(obj: unknown): int;
3040
- compareTo(value: sbyte): int;
3041
- equals(obj: unknown): boolean;
3042
- equals(obj: sbyte): boolean;
3043
- getHashCode(): int;
3044
- getTypeCode(): TypeCode;
3045
- toString(): string;
3046
- toString(format: string): string;
3047
- toString(provider: IFormatProvider): string;
3048
- toString(format: string, provider: IFormatProvider): string;
3049
- tryFormat(destination: Span_1<CLROf<char>>, charsWritten: { value: ref<int> }, format?: ReadOnlySpan_1<CLROf<char>>, provider?: IFormatProvider): boolean;
3050
- tryFormat(utf8Destination: Span_1<CLROf<byte>>, bytesWritten: { value: ref<int> }, format?: ReadOnlySpan_1<CLROf<char>>, provider?: IFormatProvider): boolean;
3051
- }
3052
-
3053
-
3054
- export const SByte: {
3055
- new(): SByte$instance;
3056
- readonly maxValue: sbyte;
3057
- readonly minValue: sbyte;
3058
- abs(value: sbyte): sbyte;
3059
- clamp(value: sbyte, min: sbyte, max: sbyte): sbyte;
3060
- copySign(value: sbyte, sign: sbyte): sbyte;
3061
- createChecked<TOther extends INumberBase_1<TOther>>(value: TOther): sbyte;
3062
- createSaturating<TOther extends INumberBase_1<TOther>>(value: TOther): sbyte;
3063
- createTruncating<TOther extends INumberBase_1<TOther>>(value: TOther): sbyte;
3064
- divRem(left: sbyte, right: sbyte): ValueTuple_2<CLROf<sbyte>, CLROf<sbyte>>;
3065
- isEvenInteger(value: sbyte): boolean;
3066
- isNegative(value: sbyte): boolean;
3067
- isOddInteger(value: sbyte): boolean;
3068
- isPositive(value: sbyte): boolean;
3069
- isPow2(value: sbyte): boolean;
3070
- leadingZeroCount(value: sbyte): sbyte;
3071
- log2(value: sbyte): sbyte;
3072
- max(x: sbyte, y: sbyte): sbyte;
3073
- maxMagnitude(x: sbyte, y: sbyte): sbyte;
3074
- min(x: sbyte, y: sbyte): sbyte;
3075
- minMagnitude(x: sbyte, y: sbyte): sbyte;
3076
- parse(utf8Text: ReadOnlySpan_1<CLROf<byte>>, style?: NumberStyles, provider?: IFormatProvider): sbyte;
3077
- parse(utf8Text: ReadOnlySpan_1<CLROf<byte>>, provider: IFormatProvider): sbyte;
3078
- parse(s: ReadOnlySpan_1<CLROf<char>>, style?: NumberStyles, provider?: IFormatProvider): sbyte;
3079
- parse(s: ReadOnlySpan_1<CLROf<char>>, provider: IFormatProvider): sbyte;
3080
- parse(s: string, style: NumberStyles, provider: IFormatProvider): sbyte;
3081
- parse(s: string, style: NumberStyles): sbyte;
3082
- parse(s: string, provider: IFormatProvider): sbyte;
3083
- parse(s: string): sbyte;
3084
- popCount(value: sbyte): sbyte;
3085
- rotateLeft(value: sbyte, rotateAmount: int): sbyte;
3086
- rotateRight(value: sbyte, rotateAmount: int): sbyte;
3087
- sign(value: sbyte): int;
3088
- trailingZeroCount(value: sbyte): sbyte;
3089
- tryParse(utf8Text: ReadOnlySpan_1<CLROf<byte>>, style: NumberStyles, provider: IFormatProvider, result: { value: ref<sbyte> }): boolean;
3090
- tryParse(utf8Text: ReadOnlySpan_1<CLROf<byte>>, provider: IFormatProvider, result: { value: ref<sbyte> }): boolean;
3091
- tryParse(utf8Text: ReadOnlySpan_1<CLROf<byte>>, result: { value: ref<sbyte> }): boolean;
3092
- tryParse(s: ReadOnlySpan_1<CLROf<char>>, style: NumberStyles, provider: IFormatProvider, result: { value: ref<sbyte> }): boolean;
3093
- tryParse(s: ReadOnlySpan_1<CLROf<char>>, provider: IFormatProvider, result: { value: ref<sbyte> }): boolean;
3094
- tryParse(s: ReadOnlySpan_1<CLROf<char>>, result: { value: ref<sbyte> }): boolean;
3095
- tryParse(s: string, style: NumberStyles, provider: IFormatProvider, result: { value: ref<sbyte> }): boolean;
3096
- tryParse(s: string, provider: IFormatProvider, result: { value: ref<sbyte> }): boolean;
3097
- tryParse(s: string, result: { value: ref<sbyte> }): boolean;
3098
- };
3099
-
3100
-
3101
- export interface __SByte$views {
3102
- As_IComparable(): IComparable$instance;
3103
- As_IComparable_1(): IComparable_1$instance<CLROf<sbyte>>;
3104
- As_IConvertible(): IConvertible$instance;
3105
- As_IEquatable_1(): IEquatable_1$instance<CLROf<sbyte>>;
3106
- As_IFormattable(): IFormattable$instance;
3107
- As_IParsable_1(): IParsable_1$instance<CLROf<sbyte>>;
3108
- As_ISpanFormattable(): ISpanFormattable$instance;
3109
- As_ISpanParsable_1(): ISpanParsable_1$instance<CLROf<sbyte>>;
3110
- As_IUtf8SpanFormattable(): IUtf8SpanFormattable$instance;
3111
- As_IUtf8SpanParsable_1(): IUtf8SpanParsable_1$instance<CLROf<sbyte>>;
3112
- As_IAdditiveIdentity_2(): System_Numerics_Internal.IAdditiveIdentity_2$instance<CLROf<sbyte>, CLROf<sbyte>>;
3113
- As_IBinaryInteger_1(): System_Numerics_Internal.IBinaryInteger_1$instance<CLROf<sbyte>>;
3114
- As_IMinMaxValue_1(): System_Numerics_Internal.IMinMaxValue_1$instance<CLROf<sbyte>>;
3115
- As_INumber_1(): System_Numerics_Internal.INumber_1$instance<CLROf<sbyte>>;
3116
- As_INumberBase_1(): System_Numerics_Internal.INumberBase_1$instance<CLROf<sbyte>>;
3117
-
3118
- // Structural method bridges for numeric interface constraints
3119
- Equals(other: SByte): boolean;
3120
- CompareTo(obj: unknown): int;
3121
- ToString(format: string, formatProvider: IFormatProvider): string;
3122
- TryFormat(destination: Span_1<CLROf<char>>, charsWritten: { value: ref<int> }, format: ReadOnlySpan_1<CLROf<char>>, provider: IFormatProvider): boolean;
3123
- GetByteCount(): int;
3124
- TryWriteBigEndian(destination: Span_1<CLROf<byte>>, bytesWritten: { value: ref<int> }): boolean;
3125
- WriteBigEndian(destination: byte[], startIndex: int): int;
3126
- WriteBigEndian(destination: byte[]): int;
3127
- WriteBigEndian(destination: Span_1<CLROf<byte>>): int;
3128
- }
3129
-
3130
- export interface SByte$instance extends System_Numerics_Internal.IMinMaxValue_1$instance<CLROf<sbyte>> {}
3131
-
3132
- export type SByte = SByte$instance & __SByte$views;
3133
-
1825
+ export type SByte = sbyte;
3134
1826
 
3135
1827
  export interface SequencePosition$instance {
3136
1828
  equals(other: SequencePosition): boolean;
@@ -3156,183 +1848,7 @@ export interface __SequencePosition$views {
3156
1848
  export type SequencePosition = SequencePosition$instance & __SequencePosition$views;
3157
1849
 
3158
1850
 
3159
- export interface Single$instance extends IBitwiseOperators_3<CLROf<float>, CLROf<float>, CLROf<float>>, IComparisonOperators_3<CLROf<float>, CLROf<float>, CLROf<boolean>>, IEqualityOperators_3<CLROf<float>, CLROf<float>, CLROf<boolean>>, IModulusOperators_3<CLROf<float>, CLROf<float>, CLROf<float>>, IAdditionOperators_3<CLROf<float>, CLROf<float>, CLROf<float>>, IDecrementOperators_1<CLROf<float>>, IDivisionOperators_3<CLROf<float>, CLROf<float>, CLROf<float>>, IIncrementOperators_1<CLROf<float>>, IMultiplyOperators_3<CLROf<float>, CLROf<float>, CLROf<float>>, ISubtractionOperators_3<CLROf<float>, CLROf<float>, CLROf<float>>, IUnaryPlusOperators_2<CLROf<float>, CLROf<float>>, IUnaryNegationOperators_2<CLROf<float>, CLROf<float>> {
3160
- compareTo(value: unknown): int;
3161
- compareTo(value: float): int;
3162
- equals(obj: unknown): boolean;
3163
- equals(obj: float): boolean;
3164
- getHashCode(): int;
3165
- getTypeCode(): TypeCode;
3166
- toString(): string;
3167
- toString(provider: IFormatProvider): string;
3168
- toString(format: string): string;
3169
- toString(format: string, provider: IFormatProvider): string;
3170
- tryFormat(destination: Span_1<CLROf<char>>, charsWritten: { value: ref<int> }, format?: ReadOnlySpan_1<CLROf<char>>, provider?: IFormatProvider): boolean;
3171
- tryFormat(utf8Destination: Span_1<CLROf<byte>>, bytesWritten: { value: ref<int> }, format?: ReadOnlySpan_1<CLROf<char>>, provider?: IFormatProvider): boolean;
3172
- }
3173
-
3174
-
3175
- export const Single: {
3176
- new(): Single$instance;
3177
- readonly minValue: float;
3178
- readonly maxValue: float;
3179
- readonly epsilon: float;
3180
- readonly negativeInfinity: float;
3181
- readonly positiveInfinity: float;
3182
- readonly naN: float;
3183
- readonly negativeZero: float;
3184
- readonly E: float;
3185
- readonly pi: float;
3186
- readonly tau: float;
3187
- abs(value: float): float;
3188
- acos(x: float): float;
3189
- acosh(x: float): float;
3190
- acosPi(x: float): float;
3191
- asin(x: float): float;
3192
- asinh(x: float): float;
3193
- asinPi(x: float): float;
3194
- atan(x: float): float;
3195
- atan2(y: float, x: float): float;
3196
- atan2Pi(y: float, x: float): float;
3197
- atanh(x: float): float;
3198
- atanPi(x: float): float;
3199
- bitDecrement(x: float): float;
3200
- bitIncrement(x: float): float;
3201
- cbrt(x: float): float;
3202
- ceiling(x: float): float;
3203
- clamp(value: float, min: float, max: float): float;
3204
- clampNative(value: float, min: float, max: float): float;
3205
- convertToInteger<TInteger extends IBinaryInteger_1<TInteger>>(value: float): TInteger;
3206
- convertToIntegerNative<TInteger extends IBinaryInteger_1<TInteger>>(value: float): TInteger;
3207
- copySign(value: float, sign: float): float;
3208
- cos(x: float): float;
3209
- cosh(x: float): float;
3210
- cosPi(x: float): float;
3211
- createChecked<TOther extends INumberBase_1<TOther>>(value: TOther): float;
3212
- createSaturating<TOther extends INumberBase_1<TOther>>(value: TOther): float;
3213
- createTruncating<TOther extends INumberBase_1<TOther>>(value: TOther): float;
3214
- degreesToRadians(degrees: float): float;
3215
- exp(x: float): float;
3216
- exp10(x: float): float;
3217
- exp10M1(x: float): float;
3218
- exp2(x: float): float;
3219
- exp2M1(x: float): float;
3220
- expM1(x: float): float;
3221
- floor(x: float): float;
3222
- fusedMultiplyAdd(left: float, right: float, addend: float): float;
3223
- hypot(x: float, y: float): float;
3224
- ieee754Remainder(left: float, right: float): float;
3225
- iLogB(x: float): int;
3226
- isEvenInteger(value: float): boolean;
3227
- isFinite(f: float): boolean;
3228
- isInfinity(f: float): boolean;
3229
- isInteger(value: float): boolean;
3230
- isNaN(f: float): boolean;
3231
- isNegative(f: float): boolean;
3232
- isNegativeInfinity(f: float): boolean;
3233
- isNormal(f: float): boolean;
3234
- isOddInteger(value: float): boolean;
3235
- isPositive(value: float): boolean;
3236
- isPositiveInfinity(f: float): boolean;
3237
- isPow2(value: float): boolean;
3238
- isRealNumber(value: float): boolean;
3239
- isSubnormal(f: float): boolean;
3240
- lerp(value1: float, value2: float, amount: float): float;
3241
- log(x: float, newBase: float): float;
3242
- log(x: float): float;
3243
- log10(x: float): float;
3244
- log10P1(x: float): float;
3245
- log2(value: float): float;
3246
- log2P1(x: float): float;
3247
- logP1(x: float): float;
3248
- max(x: float, y: float): float;
3249
- maxMagnitude(x: float, y: float): float;
3250
- maxMagnitudeNumber(x: float, y: float): float;
3251
- maxNative(x: float, y: float): float;
3252
- maxNumber(x: float, y: float): float;
3253
- min(x: float, y: float): float;
3254
- minMagnitude(x: float, y: float): float;
3255
- minMagnitudeNumber(x: float, y: float): float;
3256
- minNative(x: float, y: float): float;
3257
- minNumber(x: float, y: float): float;
3258
- multiplyAddEstimate(left: float, right: float, addend: float): float;
3259
- parse(utf8Text: ReadOnlySpan_1<CLROf<byte>>, style?: NumberStyles, provider?: IFormatProvider): float;
3260
- parse(utf8Text: ReadOnlySpan_1<CLROf<byte>>, provider: IFormatProvider): float;
3261
- parse(s: ReadOnlySpan_1<CLROf<char>>, style?: NumberStyles, provider?: IFormatProvider): float;
3262
- parse(s: ReadOnlySpan_1<CLROf<char>>, provider: IFormatProvider): float;
3263
- parse(s: string, style: NumberStyles, provider: IFormatProvider): float;
3264
- parse(s: string, style: NumberStyles): float;
3265
- parse(s: string, provider: IFormatProvider): float;
3266
- parse(s: string): float;
3267
- pow(x: float, y: float): float;
3268
- radiansToDegrees(radians: float): float;
3269
- reciprocalEstimate(x: float): float;
3270
- reciprocalSqrtEstimate(x: float): float;
3271
- rootN(x: float, n: int): float;
3272
- round(x: float, digits: int, mode: MidpointRounding): float;
3273
- round(x: float, digits: int): float;
3274
- round(x: float, mode: MidpointRounding): float;
3275
- round(x: float): float;
3276
- scaleB(x: float, n: int): float;
3277
- sign(value: float): int;
3278
- sin(x: float): float;
3279
- sinCos(x: float): ValueTuple_2<CLROf<float>, CLROf<float>>;
3280
- sinCosPi(x: float): ValueTuple_2<CLROf<float>, CLROf<float>>;
3281
- sinh(x: float): float;
3282
- sinPi(x: float): float;
3283
- sqrt(x: float): float;
3284
- tan(x: float): float;
3285
- tanh(x: float): float;
3286
- tanPi(x: float): float;
3287
- truncate(x: float): float;
3288
- tryParse(utf8Text: ReadOnlySpan_1<CLROf<byte>>, style: NumberStyles, provider: IFormatProvider, result: { value: ref<float> }): boolean;
3289
- tryParse(utf8Text: ReadOnlySpan_1<CLROf<byte>>, provider: IFormatProvider, result: { value: ref<float> }): boolean;
3290
- tryParse(utf8Text: ReadOnlySpan_1<CLROf<byte>>, result: { value: ref<float> }): boolean;
3291
- tryParse(s: ReadOnlySpan_1<CLROf<char>>, style: NumberStyles, provider: IFormatProvider, result: { value: ref<float> }): boolean;
3292
- tryParse(s: ReadOnlySpan_1<CLROf<char>>, provider: IFormatProvider, result: { value: ref<float> }): boolean;
3293
- tryParse(s: ReadOnlySpan_1<CLROf<char>>, result: { value: ref<float> }): boolean;
3294
- tryParse(s: string, style: NumberStyles, provider: IFormatProvider, result: { value: ref<float> }): boolean;
3295
- tryParse(s: string, provider: IFormatProvider, result: { value: ref<float> }): boolean;
3296
- tryParse(s: string, result: { value: ref<float> }): boolean;
3297
- };
3298
-
3299
-
3300
- export interface __Single$views {
3301
- As_IComparable(): IComparable$instance;
3302
- As_IComparable_1(): IComparable_1$instance<CLROf<float>>;
3303
- As_IConvertible(): IConvertible$instance;
3304
- As_IEquatable_1(): IEquatable_1$instance<CLROf<float>>;
3305
- As_IFormattable(): IFormattable$instance;
3306
- As_IParsable_1(): IParsable_1$instance<CLROf<float>>;
3307
- As_ISpanFormattable(): ISpanFormattable$instance;
3308
- As_ISpanParsable_1(): ISpanParsable_1$instance<CLROf<float>>;
3309
- As_IUtf8SpanFormattable(): IUtf8SpanFormattable$instance;
3310
- As_IUtf8SpanParsable_1(): IUtf8SpanParsable_1$instance<CLROf<float>>;
3311
- As_IAdditiveIdentity_2(): System_Numerics_Internal.IAdditiveIdentity_2$instance<CLROf<float>, CLROf<float>>;
3312
- As_IFloatingPoint_1(): System_Numerics_Internal.IFloatingPoint_1$instance<CLROf<float>>;
3313
- As_IMinMaxValue_1(): System_Numerics_Internal.IMinMaxValue_1$instance<CLROf<float>>;
3314
- As_INumber_1(): System_Numerics_Internal.INumber_1$instance<CLROf<float>>;
3315
- As_INumberBase_1(): System_Numerics_Internal.INumberBase_1$instance<CLROf<float>>;
3316
- As_IRootFunctions_1(): System_Numerics_Internal.IRootFunctions_1$instance<CLROf<float>>;
3317
- As_ITrigonometricFunctions_1(): System_Numerics_Internal.ITrigonometricFunctions_1$instance<CLROf<float>>;
3318
-
3319
- // Structural method bridges for numeric interface constraints
3320
- Equals(other: Single): boolean;
3321
- CompareTo(obj: unknown): int;
3322
- ToString(format: string, formatProvider: IFormatProvider): string;
3323
- TryFormat(destination: Span_1<CLROf<char>>, charsWritten: { value: ref<int> }, format: ReadOnlySpan_1<CLROf<char>>, provider: IFormatProvider): boolean;
3324
- GetExponentByteCount(): int;
3325
- GetExponentShortestBitLength(): int;
3326
- TryWriteExponentBigEndian(destination: Span_1<CLROf<byte>>, bytesWritten: { value: ref<int> }): boolean;
3327
- WriteExponentBigEndian(destination: byte[], startIndex: int): int;
3328
- WriteExponentBigEndian(destination: byte[]): int;
3329
- WriteExponentBigEndian(destination: Span_1<CLROf<byte>>): int;
3330
- }
3331
-
3332
- export interface Single$instance extends System_Numerics_Internal.IMinMaxValue_1$instance<CLROf<float>> {}
3333
-
3334
- export type Single = Single$instance & __Single$views;
3335
-
1851
+ export type Single = float;
3336
1852
 
3337
1853
  export interface Span_1$instance<T> {
3338
1854
  readonly isEmpty: boolean;
@@ -3663,471 +2179,15 @@ export const TypedReference: {
3663
2179
 
3664
2180
  export type TypedReference = TypedReference$instance;
3665
2181
 
3666
- export interface UInt128$instance extends IBitwiseOperators_3<CLROf<uint128>, CLROf<uint128>, CLROf<uint128>>, IComparisonOperators_3<CLROf<uint128>, CLROf<uint128>, CLROf<boolean>>, IEqualityOperators_3<CLROf<uint128>, CLROf<uint128>, CLROf<boolean>>, IModulusOperators_3<CLROf<uint128>, CLROf<uint128>, CLROf<uint128>>, IAdditionOperators_3<CLROf<uint128>, CLROf<uint128>, CLROf<uint128>>, IDecrementOperators_1<CLROf<uint128>>, IDivisionOperators_3<CLROf<uint128>, CLROf<uint128>, CLROf<uint128>>, IIncrementOperators_1<CLROf<uint128>>, IMultiplyOperators_3<CLROf<uint128>, CLROf<uint128>, CLROf<uint128>>, ISubtractionOperators_3<CLROf<uint128>, CLROf<uint128>, CLROf<uint128>>, IUnaryPlusOperators_2<CLROf<uint128>, CLROf<uint128>>, IUnaryNegationOperators_2<CLROf<uint128>, CLROf<uint128>>, IShiftOperators_3<CLROf<uint128>, CLROf<int>, CLROf<uint128>> {
3667
- compareTo(value: unknown): int;
3668
- compareTo(value: uint128): int;
3669
- equals(obj: unknown): boolean;
3670
- equals(other: uint128): boolean;
3671
- getHashCode(): int;
3672
- toString(): string;
3673
- toString(provider: IFormatProvider): string;
3674
- toString(format: string): string;
3675
- toString(format: string, provider: IFormatProvider): string;
3676
- tryFormat(destination: Span_1<CLROf<char>>, charsWritten: { value: ref<int> }, format?: ReadOnlySpan_1<CLROf<char>>, provider?: IFormatProvider): boolean;
3677
- tryFormat(utf8Destination: Span_1<CLROf<byte>>, bytesWritten: { value: ref<int> }, format?: ReadOnlySpan_1<CLROf<char>>, provider?: IFormatProvider): boolean;
3678
- }
3679
-
3680
-
3681
- export const UInt128: {
3682
- new(upper: ulong, lower: ulong): UInt128$instance;
3683
- readonly minValue: uint128;
3684
- readonly maxValue: uint128;
3685
- readonly one: uint128;
3686
- readonly zero: uint128;
3687
- bigMul(left: uint128, right: uint128, lower: { value: ref<uint128> }): uint128;
3688
- clamp(value: uint128, min: uint128, max: uint128): uint128;
3689
- createChecked<TOther extends INumberBase_1<TOther>>(value: TOther): uint128;
3690
- createSaturating<TOther extends INumberBase_1<TOther>>(value: TOther): uint128;
3691
- createTruncating<TOther extends INumberBase_1<TOther>>(value: TOther): uint128;
3692
- divRem(left: uint128, right: uint128): ValueTuple_2<CLROf<uint128>, CLROf<uint128>>;
3693
- isEvenInteger(value: uint128): boolean;
3694
- isOddInteger(value: uint128): boolean;
3695
- isPow2(value: uint128): boolean;
3696
- leadingZeroCount(value: uint128): uint128;
3697
- log2(value: uint128): uint128;
3698
- max(x: uint128, y: uint128): uint128;
3699
- min(x: uint128, y: uint128): uint128;
3700
- parse(utf8Text: ReadOnlySpan_1<CLROf<byte>>, style?: NumberStyles, provider?: IFormatProvider): uint128;
3701
- parse(utf8Text: ReadOnlySpan_1<CLROf<byte>>, provider: IFormatProvider): uint128;
3702
- parse(s: ReadOnlySpan_1<CLROf<char>>, style?: NumberStyles, provider?: IFormatProvider): uint128;
3703
- parse(s: ReadOnlySpan_1<CLROf<char>>, provider: IFormatProvider): uint128;
3704
- parse(s: string, style: NumberStyles, provider: IFormatProvider): uint128;
3705
- parse(s: string, style: NumberStyles): uint128;
3706
- parse(s: string, provider: IFormatProvider): uint128;
3707
- parse(s: string): uint128;
3708
- popCount(value: uint128): uint128;
3709
- rotateLeft(value: uint128, rotateAmount: int): uint128;
3710
- rotateRight(value: uint128, rotateAmount: int): uint128;
3711
- sign(value: uint128): int;
3712
- trailingZeroCount(value: uint128): uint128;
3713
- tryParse(utf8Text: ReadOnlySpan_1<CLROf<byte>>, style: NumberStyles, provider: IFormatProvider, result: { value: ref<uint128> }): boolean;
3714
- tryParse(utf8Text: ReadOnlySpan_1<CLROf<byte>>, provider: IFormatProvider, result: { value: ref<uint128> }): boolean;
3715
- tryParse(utf8Text: ReadOnlySpan_1<CLROf<byte>>, result: { value: ref<uint128> }): boolean;
3716
- tryParse(s: ReadOnlySpan_1<CLROf<char>>, style: NumberStyles, provider: IFormatProvider, result: { value: ref<uint128> }): boolean;
3717
- tryParse(s: ReadOnlySpan_1<CLROf<char>>, provider: IFormatProvider, result: { value: ref<uint128> }): boolean;
3718
- tryParse(s: ReadOnlySpan_1<CLROf<char>>, result: { value: ref<uint128> }): boolean;
3719
- tryParse(s: string, style: NumberStyles, provider: IFormatProvider, result: { value: ref<uint128> }): boolean;
3720
- tryParse(s: string, provider: IFormatProvider, result: { value: ref<uint128> }): boolean;
3721
- tryParse(s: string, result: { value: ref<uint128> }): boolean;
3722
- };
3723
-
3724
-
3725
- export interface __UInt128$views {
3726
- As_IComparable(): IComparable$instance;
3727
- As_IComparable_1(): IComparable_1$instance<CLROf<uint128>>;
3728
- As_IEquatable_1(): IEquatable_1$instance<CLROf<uint128>>;
3729
- As_IFormattable(): IFormattable$instance;
3730
- As_IParsable_1(): IParsable_1$instance<CLROf<uint128>>;
3731
- As_ISpanParsable_1(): ISpanParsable_1$instance<CLROf<uint128>>;
3732
- As_IUtf8SpanFormattable(): IUtf8SpanFormattable$instance;
3733
- As_IUtf8SpanParsable_1(): IUtf8SpanParsable_1$instance<CLROf<uint128>>;
3734
- As_IAdditiveIdentity_2(): System_Numerics_Internal.IAdditiveIdentity_2$instance<CLROf<uint128>, CLROf<uint128>>;
3735
- As_IBinaryInteger_1(): System_Numerics_Internal.IBinaryInteger_1$instance<CLROf<uint128>>;
3736
- As_IMinMaxValue_1(): System_Numerics_Internal.IMinMaxValue_1$instance<CLROf<uint128>>;
3737
- As_INumber_1(): System_Numerics_Internal.INumber_1$instance<CLROf<uint128>>;
3738
- As_INumberBase_1(): System_Numerics_Internal.INumberBase_1$instance<CLROf<uint128>>;
2182
+ export type UInt128 = uint128;
3739
2183
 
3740
- // Structural method bridges for numeric interface constraints
3741
- Equals(other: UInt128): boolean;
3742
- CompareTo(obj: unknown): int;
3743
- ToString(format: string, formatProvider: IFormatProvider): string;
3744
- TryFormat(destination: Span_1<CLROf<char>>, charsWritten: { value: ref<int> }, format: ReadOnlySpan_1<CLROf<char>>, provider: IFormatProvider): boolean;
3745
- GetByteCount(): int;
3746
- TryWriteBigEndian(destination: Span_1<CLROf<byte>>, bytesWritten: { value: ref<int> }): boolean;
3747
- WriteBigEndian(destination: byte[], startIndex: int): int;
3748
- WriteBigEndian(destination: byte[]): int;
3749
- WriteBigEndian(destination: Span_1<CLROf<byte>>): int;
3750
- }
2184
+ export type UInt16 = ushort;
3751
2185
 
3752
- export interface UInt128$instance extends System_Numerics_Internal.IMinMaxValue_1$instance<CLROf<uint128>> {}
2186
+ export type UInt32 = uint;
3753
2187
 
3754
- export type UInt128 = UInt128$instance & __UInt128$views;
3755
-
3756
-
3757
- export interface UInt16$instance extends IBitwiseOperators_3<CLROf<ushort>, CLROf<ushort>, CLROf<ushort>>, IComparisonOperators_3<CLROf<ushort>, CLROf<ushort>, CLROf<boolean>>, IEqualityOperators_3<CLROf<ushort>, CLROf<ushort>, CLROf<boolean>>, IModulusOperators_3<CLROf<ushort>, CLROf<ushort>, CLROf<ushort>>, IAdditionOperators_3<CLROf<ushort>, CLROf<ushort>, CLROf<ushort>>, IDecrementOperators_1<CLROf<ushort>>, IDivisionOperators_3<CLROf<ushort>, CLROf<ushort>, CLROf<ushort>>, IIncrementOperators_1<CLROf<ushort>>, IMultiplyOperators_3<CLROf<ushort>, CLROf<ushort>, CLROf<ushort>>, ISubtractionOperators_3<CLROf<ushort>, CLROf<ushort>, CLROf<ushort>>, IUnaryPlusOperators_2<CLROf<ushort>, CLROf<ushort>>, IUnaryNegationOperators_2<CLROf<ushort>, CLROf<ushort>>, IShiftOperators_3<CLROf<ushort>, CLROf<int>, CLROf<ushort>> {
3758
- compareTo(value: unknown): int;
3759
- compareTo(value: ushort): int;
3760
- equals(obj: unknown): boolean;
3761
- equals(obj: ushort): boolean;
3762
- getHashCode(): int;
3763
- getTypeCode(): TypeCode;
3764
- toString(): string;
3765
- toString(provider: IFormatProvider): string;
3766
- toString(format: string): string;
3767
- toString(format: string, provider: IFormatProvider): string;
3768
- tryFormat(destination: Span_1<CLROf<char>>, charsWritten: { value: ref<int> }, format?: ReadOnlySpan_1<CLROf<char>>, provider?: IFormatProvider): boolean;
3769
- tryFormat(utf8Destination: Span_1<CLROf<byte>>, bytesWritten: { value: ref<int> }, format?: ReadOnlySpan_1<CLROf<char>>, provider?: IFormatProvider): boolean;
3770
- }
3771
-
3772
-
3773
- export const UInt16: {
3774
- new(): UInt16$instance;
3775
- readonly maxValue: ushort;
3776
- readonly minValue: ushort;
3777
- clamp(value: ushort, min: ushort, max: ushort): ushort;
3778
- createChecked<TOther extends INumberBase_1<TOther>>(value: TOther): ushort;
3779
- createSaturating<TOther extends INumberBase_1<TOther>>(value: TOther): ushort;
3780
- createTruncating<TOther extends INumberBase_1<TOther>>(value: TOther): ushort;
3781
- divRem(left: ushort, right: ushort): ValueTuple_2<CLROf<ushort>, CLROf<ushort>>;
3782
- isEvenInteger(value: ushort): boolean;
3783
- isOddInteger(value: ushort): boolean;
3784
- isPow2(value: ushort): boolean;
3785
- leadingZeroCount(value: ushort): ushort;
3786
- log2(value: ushort): ushort;
3787
- max(x: ushort, y: ushort): ushort;
3788
- min(x: ushort, y: ushort): ushort;
3789
- parse(utf8Text: ReadOnlySpan_1<CLROf<byte>>, style?: NumberStyles, provider?: IFormatProvider): ushort;
3790
- parse(utf8Text: ReadOnlySpan_1<CLROf<byte>>, provider: IFormatProvider): ushort;
3791
- parse(s: ReadOnlySpan_1<CLROf<char>>, style?: NumberStyles, provider?: IFormatProvider): ushort;
3792
- parse(s: ReadOnlySpan_1<CLROf<char>>, provider: IFormatProvider): ushort;
3793
- parse(s: string, style: NumberStyles, provider: IFormatProvider): ushort;
3794
- parse(s: string, style: NumberStyles): ushort;
3795
- parse(s: string, provider: IFormatProvider): ushort;
3796
- parse(s: string): ushort;
3797
- popCount(value: ushort): ushort;
3798
- rotateLeft(value: ushort, rotateAmount: int): ushort;
3799
- rotateRight(value: ushort, rotateAmount: int): ushort;
3800
- sign(value: ushort): int;
3801
- trailingZeroCount(value: ushort): ushort;
3802
- tryParse(utf8Text: ReadOnlySpan_1<CLROf<byte>>, style: NumberStyles, provider: IFormatProvider, result: { value: ref<ushort> }): boolean;
3803
- tryParse(utf8Text: ReadOnlySpan_1<CLROf<byte>>, provider: IFormatProvider, result: { value: ref<ushort> }): boolean;
3804
- tryParse(utf8Text: ReadOnlySpan_1<CLROf<byte>>, result: { value: ref<ushort> }): boolean;
3805
- tryParse(s: ReadOnlySpan_1<CLROf<char>>, style: NumberStyles, provider: IFormatProvider, result: { value: ref<ushort> }): boolean;
3806
- tryParse(s: ReadOnlySpan_1<CLROf<char>>, provider: IFormatProvider, result: { value: ref<ushort> }): boolean;
3807
- tryParse(s: ReadOnlySpan_1<CLROf<char>>, result: { value: ref<ushort> }): boolean;
3808
- tryParse(s: string, style: NumberStyles, provider: IFormatProvider, result: { value: ref<ushort> }): boolean;
3809
- tryParse(s: string, provider: IFormatProvider, result: { value: ref<ushort> }): boolean;
3810
- tryParse(s: string, result: { value: ref<ushort> }): boolean;
3811
- };
3812
-
3813
-
3814
- export interface __UInt16$views {
3815
- As_IComparable(): IComparable$instance;
3816
- As_IComparable_1(): IComparable_1$instance<CLROf<ushort>>;
3817
- As_IConvertible(): IConvertible$instance;
3818
- As_IEquatable_1(): IEquatable_1$instance<CLROf<ushort>>;
3819
- As_IFormattable(): IFormattable$instance;
3820
- As_IParsable_1(): IParsable_1$instance<CLROf<ushort>>;
3821
- As_ISpanFormattable(): ISpanFormattable$instance;
3822
- As_ISpanParsable_1(): ISpanParsable_1$instance<CLROf<ushort>>;
3823
- As_IUtf8SpanFormattable(): IUtf8SpanFormattable$instance;
3824
- As_IUtf8SpanParsable_1(): IUtf8SpanParsable_1$instance<CLROf<ushort>>;
3825
- As_IAdditiveIdentity_2(): System_Numerics_Internal.IAdditiveIdentity_2$instance<CLROf<ushort>, CLROf<ushort>>;
3826
- As_IBinaryInteger_1(): System_Numerics_Internal.IBinaryInteger_1$instance<CLROf<ushort>>;
3827
- As_IMinMaxValue_1(): System_Numerics_Internal.IMinMaxValue_1$instance<CLROf<ushort>>;
3828
- As_INumber_1(): System_Numerics_Internal.INumber_1$instance<CLROf<ushort>>;
3829
- As_INumberBase_1(): System_Numerics_Internal.INumberBase_1$instance<CLROf<ushort>>;
3830
-
3831
- // Structural method bridges for numeric interface constraints
3832
- Equals(other: UInt16): boolean;
3833
- CompareTo(obj: unknown): int;
3834
- ToString(format: string, formatProvider: IFormatProvider): string;
3835
- TryFormat(destination: Span_1<CLROf<char>>, charsWritten: { value: ref<int> }, format: ReadOnlySpan_1<CLROf<char>>, provider: IFormatProvider): boolean;
3836
- GetByteCount(): int;
3837
- TryWriteBigEndian(destination: Span_1<CLROf<byte>>, bytesWritten: { value: ref<int> }): boolean;
3838
- WriteBigEndian(destination: byte[], startIndex: int): int;
3839
- WriteBigEndian(destination: byte[]): int;
3840
- WriteBigEndian(destination: Span_1<CLROf<byte>>): int;
3841
- }
3842
-
3843
- export interface UInt16$instance extends System_Numerics_Internal.IMinMaxValue_1$instance<CLROf<ushort>> {}
3844
-
3845
- export type UInt16 = UInt16$instance & __UInt16$views;
3846
-
3847
-
3848
- export interface UInt32$instance extends IBitwiseOperators_3<CLROf<uint>, CLROf<uint>, CLROf<uint>>, IComparisonOperators_3<CLROf<uint>, CLROf<uint>, CLROf<boolean>>, IEqualityOperators_3<CLROf<uint>, CLROf<uint>, CLROf<boolean>>, IModulusOperators_3<CLROf<uint>, CLROf<uint>, CLROf<uint>>, IAdditionOperators_3<CLROf<uint>, CLROf<uint>, CLROf<uint>>, IDecrementOperators_1<CLROf<uint>>, IDivisionOperators_3<CLROf<uint>, CLROf<uint>, CLROf<uint>>, IIncrementOperators_1<CLROf<uint>>, IMultiplyOperators_3<CLROf<uint>, CLROf<uint>, CLROf<uint>>, ISubtractionOperators_3<CLROf<uint>, CLROf<uint>, CLROf<uint>>, IUnaryPlusOperators_2<CLROf<uint>, CLROf<uint>>, IUnaryNegationOperators_2<CLROf<uint>, CLROf<uint>>, IShiftOperators_3<CLROf<uint>, CLROf<int>, CLROf<uint>> {
3849
- compareTo(value: unknown): int;
3850
- compareTo(value: uint): int;
3851
- equals(obj: unknown): boolean;
3852
- equals(obj: uint): boolean;
3853
- getHashCode(): int;
3854
- getTypeCode(): TypeCode;
3855
- toString(): string;
3856
- toString(provider: IFormatProvider): string;
3857
- toString(format: string): string;
3858
- toString(format: string, provider: IFormatProvider): string;
3859
- tryFormat(destination: Span_1<CLROf<char>>, charsWritten: { value: ref<int> }, format?: ReadOnlySpan_1<CLROf<char>>, provider?: IFormatProvider): boolean;
3860
- tryFormat(utf8Destination: Span_1<CLROf<byte>>, bytesWritten: { value: ref<int> }, format?: ReadOnlySpan_1<CLROf<char>>, provider?: IFormatProvider): boolean;
3861
- }
3862
-
3863
-
3864
- export const UInt32: {
3865
- new(): UInt32$instance;
3866
- readonly maxValue: uint;
3867
- readonly minValue: uint;
3868
- bigMul(left: uint, right: uint): ulong;
3869
- clamp(value: uint, min: uint, max: uint): uint;
3870
- createChecked<TOther extends INumberBase_1<TOther>>(value: TOther): uint;
3871
- createSaturating<TOther extends INumberBase_1<TOther>>(value: TOther): uint;
3872
- createTruncating<TOther extends INumberBase_1<TOther>>(value: TOther): uint;
3873
- divRem(left: uint, right: uint): ValueTuple_2<CLROf<uint>, CLROf<uint>>;
3874
- isEvenInteger(value: uint): boolean;
3875
- isOddInteger(value: uint): boolean;
3876
- isPow2(value: uint): boolean;
3877
- leadingZeroCount(value: uint): uint;
3878
- log2(value: uint): uint;
3879
- max(x: uint, y: uint): uint;
3880
- min(x: uint, y: uint): uint;
3881
- parse(utf8Text: ReadOnlySpan_1<CLROf<byte>>, style?: NumberStyles, provider?: IFormatProvider): uint;
3882
- parse(utf8Text: ReadOnlySpan_1<CLROf<byte>>, provider: IFormatProvider): uint;
3883
- parse(s: ReadOnlySpan_1<CLROf<char>>, style?: NumberStyles, provider?: IFormatProvider): uint;
3884
- parse(s: ReadOnlySpan_1<CLROf<char>>, provider: IFormatProvider): uint;
3885
- parse(s: string, style: NumberStyles, provider: IFormatProvider): uint;
3886
- parse(s: string, style: NumberStyles): uint;
3887
- parse(s: string, provider: IFormatProvider): uint;
3888
- parse(s: string): uint;
3889
- popCount(value: uint): uint;
3890
- rotateLeft(value: uint, rotateAmount: int): uint;
3891
- rotateRight(value: uint, rotateAmount: int): uint;
3892
- sign(value: uint): int;
3893
- trailingZeroCount(value: uint): uint;
3894
- tryParse(utf8Text: ReadOnlySpan_1<CLROf<byte>>, style: NumberStyles, provider: IFormatProvider, result: { value: ref<uint> }): boolean;
3895
- tryParse(utf8Text: ReadOnlySpan_1<CLROf<byte>>, provider: IFormatProvider, result: { value: ref<uint> }): boolean;
3896
- tryParse(utf8Text: ReadOnlySpan_1<CLROf<byte>>, result: { value: ref<uint> }): boolean;
3897
- tryParse(s: ReadOnlySpan_1<CLROf<char>>, style: NumberStyles, provider: IFormatProvider, result: { value: ref<uint> }): boolean;
3898
- tryParse(s: ReadOnlySpan_1<CLROf<char>>, provider: IFormatProvider, result: { value: ref<uint> }): boolean;
3899
- tryParse(s: ReadOnlySpan_1<CLROf<char>>, result: { value: ref<uint> }): boolean;
3900
- tryParse(s: string, style: NumberStyles, provider: IFormatProvider, result: { value: ref<uint> }): boolean;
3901
- tryParse(s: string, provider: IFormatProvider, result: { value: ref<uint> }): boolean;
3902
- tryParse(s: string, result: { value: ref<uint> }): boolean;
3903
- };
3904
-
3905
-
3906
- export interface __UInt32$views {
3907
- As_IComparable(): IComparable$instance;
3908
- As_IComparable_1(): IComparable_1$instance<CLROf<uint>>;
3909
- As_IConvertible(): IConvertible$instance;
3910
- As_IEquatable_1(): IEquatable_1$instance<CLROf<uint>>;
3911
- As_IFormattable(): IFormattable$instance;
3912
- As_IParsable_1(): IParsable_1$instance<CLROf<uint>>;
3913
- As_ISpanFormattable(): ISpanFormattable$instance;
3914
- As_ISpanParsable_1(): ISpanParsable_1$instance<CLROf<uint>>;
3915
- As_IUtf8SpanFormattable(): IUtf8SpanFormattable$instance;
3916
- As_IUtf8SpanParsable_1(): IUtf8SpanParsable_1$instance<CLROf<uint>>;
3917
- As_IAdditiveIdentity_2(): System_Numerics_Internal.IAdditiveIdentity_2$instance<CLROf<uint>, CLROf<uint>>;
3918
- As_IBinaryInteger_1(): System_Numerics_Internal.IBinaryInteger_1$instance<CLROf<uint>>;
3919
- As_IMinMaxValue_1(): System_Numerics_Internal.IMinMaxValue_1$instance<CLROf<uint>>;
3920
- As_INumber_1(): System_Numerics_Internal.INumber_1$instance<CLROf<uint>>;
3921
- As_INumberBase_1(): System_Numerics_Internal.INumberBase_1$instance<CLROf<uint>>;
3922
-
3923
- // Structural method bridges for numeric interface constraints
3924
- Equals(other: UInt32): boolean;
3925
- CompareTo(obj: unknown): int;
3926
- ToString(format: string, formatProvider: IFormatProvider): string;
3927
- TryFormat(destination: Span_1<CLROf<char>>, charsWritten: { value: ref<int> }, format: ReadOnlySpan_1<CLROf<char>>, provider: IFormatProvider): boolean;
3928
- GetByteCount(): int;
3929
- TryWriteBigEndian(destination: Span_1<CLROf<byte>>, bytesWritten: { value: ref<int> }): boolean;
3930
- WriteBigEndian(destination: byte[], startIndex: int): int;
3931
- WriteBigEndian(destination: byte[]): int;
3932
- WriteBigEndian(destination: Span_1<CLROf<byte>>): int;
3933
- }
3934
-
3935
- export interface UInt32$instance extends System_Numerics_Internal.IMinMaxValue_1$instance<CLROf<uint>> {}
3936
-
3937
- export type UInt32 = UInt32$instance & __UInt32$views;
3938
-
3939
-
3940
- export interface UInt64$instance extends IBitwiseOperators_3<CLROf<ulong>, CLROf<ulong>, CLROf<ulong>>, IComparisonOperators_3<CLROf<ulong>, CLROf<ulong>, CLROf<boolean>>, IEqualityOperators_3<CLROf<ulong>, CLROf<ulong>, CLROf<boolean>>, IModulusOperators_3<CLROf<ulong>, CLROf<ulong>, CLROf<ulong>>, IAdditionOperators_3<CLROf<ulong>, CLROf<ulong>, CLROf<ulong>>, IDecrementOperators_1<CLROf<ulong>>, IDivisionOperators_3<CLROf<ulong>, CLROf<ulong>, CLROf<ulong>>, IIncrementOperators_1<CLROf<ulong>>, IMultiplyOperators_3<CLROf<ulong>, CLROf<ulong>, CLROf<ulong>>, ISubtractionOperators_3<CLROf<ulong>, CLROf<ulong>, CLROf<ulong>>, IUnaryPlusOperators_2<CLROf<ulong>, CLROf<ulong>>, IUnaryNegationOperators_2<CLROf<ulong>, CLROf<ulong>>, IShiftOperators_3<CLROf<ulong>, CLROf<int>, CLROf<ulong>> {
3941
- compareTo(value: unknown): int;
3942
- compareTo(value: ulong): int;
3943
- equals(obj: unknown): boolean;
3944
- equals(obj: ulong): boolean;
3945
- getHashCode(): int;
3946
- getTypeCode(): TypeCode;
3947
- toString(): string;
3948
- toString(provider: IFormatProvider): string;
3949
- toString(format: string): string;
3950
- toString(format: string, provider: IFormatProvider): string;
3951
- tryFormat(destination: Span_1<CLROf<char>>, charsWritten: { value: ref<int> }, format?: ReadOnlySpan_1<CLROf<char>>, provider?: IFormatProvider): boolean;
3952
- tryFormat(utf8Destination: Span_1<CLROf<byte>>, bytesWritten: { value: ref<int> }, format?: ReadOnlySpan_1<CLROf<char>>, provider?: IFormatProvider): boolean;
3953
- }
3954
-
3955
-
3956
- export const UInt64: {
3957
- new(): UInt64$instance;
3958
- readonly maxValue: ulong;
3959
- readonly minValue: ulong;
3960
- bigMul(left: ulong, right: ulong): uint128;
3961
- clamp(value: ulong, min: ulong, max: ulong): ulong;
3962
- createChecked<TOther extends INumberBase_1<TOther>>(value: TOther): ulong;
3963
- createSaturating<TOther extends INumberBase_1<TOther>>(value: TOther): ulong;
3964
- createTruncating<TOther extends INumberBase_1<TOther>>(value: TOther): ulong;
3965
- divRem(left: ulong, right: ulong): ValueTuple_2<CLROf<ulong>, CLROf<ulong>>;
3966
- isEvenInteger(value: ulong): boolean;
3967
- isOddInteger(value: ulong): boolean;
3968
- isPow2(value: ulong): boolean;
3969
- leadingZeroCount(value: ulong): ulong;
3970
- log2(value: ulong): ulong;
3971
- max(x: ulong, y: ulong): ulong;
3972
- min(x: ulong, y: ulong): ulong;
3973
- parse(utf8Text: ReadOnlySpan_1<CLROf<byte>>, style?: NumberStyles, provider?: IFormatProvider): ulong;
3974
- parse(utf8Text: ReadOnlySpan_1<CLROf<byte>>, provider: IFormatProvider): ulong;
3975
- parse(s: ReadOnlySpan_1<CLROf<char>>, style?: NumberStyles, provider?: IFormatProvider): ulong;
3976
- parse(s: ReadOnlySpan_1<CLROf<char>>, provider: IFormatProvider): ulong;
3977
- parse(s: string, style: NumberStyles, provider: IFormatProvider): ulong;
3978
- parse(s: string, style: NumberStyles): ulong;
3979
- parse(s: string, provider: IFormatProvider): ulong;
3980
- parse(s: string): ulong;
3981
- popCount(value: ulong): ulong;
3982
- rotateLeft(value: ulong, rotateAmount: int): ulong;
3983
- rotateRight(value: ulong, rotateAmount: int): ulong;
3984
- sign(value: ulong): int;
3985
- trailingZeroCount(value: ulong): ulong;
3986
- tryParse(utf8Text: ReadOnlySpan_1<CLROf<byte>>, style: NumberStyles, provider: IFormatProvider, result: { value: ref<ulong> }): boolean;
3987
- tryParse(utf8Text: ReadOnlySpan_1<CLROf<byte>>, provider: IFormatProvider, result: { value: ref<ulong> }): boolean;
3988
- tryParse(utf8Text: ReadOnlySpan_1<CLROf<byte>>, result: { value: ref<ulong> }): boolean;
3989
- tryParse(s: ReadOnlySpan_1<CLROf<char>>, style: NumberStyles, provider: IFormatProvider, result: { value: ref<ulong> }): boolean;
3990
- tryParse(s: ReadOnlySpan_1<CLROf<char>>, provider: IFormatProvider, result: { value: ref<ulong> }): boolean;
3991
- tryParse(s: ReadOnlySpan_1<CLROf<char>>, result: { value: ref<ulong> }): boolean;
3992
- tryParse(s: string, style: NumberStyles, provider: IFormatProvider, result: { value: ref<ulong> }): boolean;
3993
- tryParse(s: string, provider: IFormatProvider, result: { value: ref<ulong> }): boolean;
3994
- tryParse(s: string, result: { value: ref<ulong> }): boolean;
3995
- };
3996
-
3997
-
3998
- export interface __UInt64$views {
3999
- As_IComparable(): IComparable$instance;
4000
- As_IComparable_1(): IComparable_1$instance<CLROf<ulong>>;
4001
- As_IConvertible(): IConvertible$instance;
4002
- As_IEquatable_1(): IEquatable_1$instance<CLROf<ulong>>;
4003
- As_IFormattable(): IFormattable$instance;
4004
- As_IParsable_1(): IParsable_1$instance<CLROf<ulong>>;
4005
- As_ISpanFormattable(): ISpanFormattable$instance;
4006
- As_ISpanParsable_1(): ISpanParsable_1$instance<CLROf<ulong>>;
4007
- As_IUtf8SpanFormattable(): IUtf8SpanFormattable$instance;
4008
- As_IUtf8SpanParsable_1(): IUtf8SpanParsable_1$instance<CLROf<ulong>>;
4009
- As_IAdditiveIdentity_2(): System_Numerics_Internal.IAdditiveIdentity_2$instance<CLROf<ulong>, CLROf<ulong>>;
4010
- As_IBinaryInteger_1(): System_Numerics_Internal.IBinaryInteger_1$instance<CLROf<ulong>>;
4011
- As_IMinMaxValue_1(): System_Numerics_Internal.IMinMaxValue_1$instance<CLROf<ulong>>;
4012
- As_INumber_1(): System_Numerics_Internal.INumber_1$instance<CLROf<ulong>>;
4013
- As_INumberBase_1(): System_Numerics_Internal.INumberBase_1$instance<CLROf<ulong>>;
4014
-
4015
- // Structural method bridges for numeric interface constraints
4016
- Equals(other: UInt64): boolean;
4017
- CompareTo(obj: unknown): int;
4018
- ToString(format: string, formatProvider: IFormatProvider): string;
4019
- TryFormat(destination: Span_1<CLROf<char>>, charsWritten: { value: ref<int> }, format: ReadOnlySpan_1<CLROf<char>>, provider: IFormatProvider): boolean;
4020
- GetByteCount(): int;
4021
- TryWriteBigEndian(destination: Span_1<CLROf<byte>>, bytesWritten: { value: ref<int> }): boolean;
4022
- WriteBigEndian(destination: byte[], startIndex: int): int;
4023
- WriteBigEndian(destination: byte[]): int;
4024
- WriteBigEndian(destination: Span_1<CLROf<byte>>): int;
4025
- }
4026
-
4027
- export interface UInt64$instance extends System_Numerics_Internal.IMinMaxValue_1$instance<CLROf<ulong>> {}
4028
-
4029
- export type UInt64 = UInt64$instance & __UInt64$views;
4030
-
4031
-
4032
- export interface UIntPtr$instance extends IBitwiseOperators_3<CLROf<nuint>, CLROf<nuint>, CLROf<nuint>>, IComparisonOperators_3<CLROf<nuint>, CLROf<nuint>, CLROf<boolean>>, IEqualityOperators_3<CLROf<nuint>, CLROf<nuint>, CLROf<boolean>>, IModulusOperators_3<CLROf<nuint>, CLROf<nuint>, CLROf<nuint>>, IAdditionOperators_3<CLROf<nuint>, CLROf<nuint>, CLROf<nuint>>, IDecrementOperators_1<CLROf<nuint>>, IDivisionOperators_3<CLROf<nuint>, CLROf<nuint>, CLROf<nuint>>, IIncrementOperators_1<CLROf<nuint>>, IMultiplyOperators_3<CLROf<nuint>, CLROf<nuint>, CLROf<nuint>>, ISubtractionOperators_3<CLROf<nuint>, CLROf<nuint>, CLROf<nuint>>, IUnaryPlusOperators_2<CLROf<nuint>, CLROf<nuint>>, IUnaryNegationOperators_2<CLROf<nuint>, CLROf<nuint>>, IShiftOperators_3<CLROf<nuint>, CLROf<int>, CLROf<nuint>> {
4033
- compareTo(value: unknown): int;
4034
- compareTo(value: nuint): int;
4035
- equals(obj: unknown): boolean;
4036
- equals(other: nuint): boolean;
4037
- getHashCode(): int;
4038
- toPointer(): ptr<void>;
4039
- toString(): string;
4040
- toString(format: string): string;
4041
- toString(provider: IFormatProvider): string;
4042
- toString(format: string, provider: IFormatProvider): string;
4043
- toUInt32(): uint;
4044
- toUInt64(): ulong;
4045
- tryFormat(destination: Span_1<CLROf<char>>, charsWritten: { value: ref<int> }, format?: ReadOnlySpan_1<CLROf<char>>, provider?: IFormatProvider): boolean;
4046
- tryFormat(utf8Destination: Span_1<CLROf<byte>>, bytesWritten: { value: ref<int> }, format?: ReadOnlySpan_1<CLROf<char>>, provider?: IFormatProvider): boolean;
4047
- }
4048
-
4049
-
4050
- export const UIntPtr: {
4051
- new(value: uint): UIntPtr$instance;
4052
- new(value: ulong): UIntPtr$instance;
4053
- new(value: ptr<void>): UIntPtr$instance;
4054
- readonly zero: nuint;
4055
- readonly size: int;
4056
- readonly maxValue: nuint;
4057
- readonly minValue: nuint;
4058
- add(pointer: nuint, offset: int): nuint;
4059
- bigMul(left: nuint, right: nuint, lower: { value: ref<nuint> }): nuint;
4060
- clamp(value: nuint, min: nuint, max: nuint): nuint;
4061
- createChecked<TOther extends INumberBase_1<TOther>>(value: TOther): nuint;
4062
- createSaturating<TOther extends INumberBase_1<TOther>>(value: TOther): nuint;
4063
- createTruncating<TOther extends INumberBase_1<TOther>>(value: TOther): nuint;
4064
- divRem(left: nuint, right: nuint): ValueTuple_2<CLROf<nuint>, CLROf<nuint>>;
4065
- isEvenInteger(value: nuint): boolean;
4066
- isOddInteger(value: nuint): boolean;
4067
- isPow2(value: nuint): boolean;
4068
- leadingZeroCount(value: nuint): nuint;
4069
- log2(value: nuint): nuint;
4070
- max(x: nuint, y: nuint): nuint;
4071
- min(x: nuint, y: nuint): nuint;
4072
- parse(utf8Text: ReadOnlySpan_1<CLROf<byte>>, style?: NumberStyles, provider?: IFormatProvider): nuint;
4073
- parse(utf8Text: ReadOnlySpan_1<CLROf<byte>>, provider: IFormatProvider): nuint;
4074
- parse(s: ReadOnlySpan_1<CLROf<char>>, style?: NumberStyles, provider?: IFormatProvider): nuint;
4075
- parse(s: ReadOnlySpan_1<CLROf<char>>, provider: IFormatProvider): nuint;
4076
- parse(s: string, style: NumberStyles, provider: IFormatProvider): nuint;
4077
- parse(s: string, style: NumberStyles): nuint;
4078
- parse(s: string, provider: IFormatProvider): nuint;
4079
- parse(s: string): nuint;
4080
- popCount(value: nuint): nuint;
4081
- rotateLeft(value: nuint, rotateAmount: int): nuint;
4082
- rotateRight(value: nuint, rotateAmount: int): nuint;
4083
- sign(value: nuint): int;
4084
- subtract(pointer: nuint, offset: int): nuint;
4085
- trailingZeroCount(value: nuint): nuint;
4086
- tryParse(utf8Text: ReadOnlySpan_1<CLROf<byte>>, style: NumberStyles, provider: IFormatProvider, result: { value: ref<nuint> }): boolean;
4087
- tryParse(utf8Text: ReadOnlySpan_1<CLROf<byte>>, provider: IFormatProvider, result: { value: ref<nuint> }): boolean;
4088
- tryParse(utf8Text: ReadOnlySpan_1<CLROf<byte>>, result: { value: ref<nuint> }): boolean;
4089
- tryParse(s: ReadOnlySpan_1<CLROf<char>>, style: NumberStyles, provider: IFormatProvider, result: { value: ref<nuint> }): boolean;
4090
- tryParse(s: ReadOnlySpan_1<CLROf<char>>, provider: IFormatProvider, result: { value: ref<nuint> }): boolean;
4091
- tryParse(s: ReadOnlySpan_1<CLROf<char>>, result: { value: ref<nuint> }): boolean;
4092
- tryParse(s: string, style: NumberStyles, provider: IFormatProvider, result: { value: ref<nuint> }): boolean;
4093
- tryParse(s: string, provider: IFormatProvider, result: { value: ref<nuint> }): boolean;
4094
- tryParse(s: string, result: { value: ref<nuint> }): boolean;
4095
- };
4096
-
4097
-
4098
- export interface __UIntPtr$views {
4099
- As_IComparable(): IComparable$instance;
4100
- As_IComparable_1(): IComparable_1$instance<CLROf<nuint>>;
4101
- As_IEquatable_1(): IEquatable_1$instance<CLROf<nuint>>;
4102
- As_IFormattable(): IFormattable$instance;
4103
- As_IParsable_1(): IParsable_1$instance<CLROf<nuint>>;
4104
- As_ISpanFormattable(): ISpanFormattable$instance;
4105
- As_ISpanParsable_1(): ISpanParsable_1$instance<CLROf<nuint>>;
4106
- As_IUtf8SpanFormattable(): IUtf8SpanFormattable$instance;
4107
- As_IUtf8SpanParsable_1(): IUtf8SpanParsable_1$instance<CLROf<nuint>>;
4108
- As_IAdditiveIdentity_2(): System_Numerics_Internal.IAdditiveIdentity_2$instance<CLROf<nuint>, CLROf<nuint>>;
4109
- As_IBinaryInteger_1(): System_Numerics_Internal.IBinaryInteger_1$instance<CLROf<nuint>>;
4110
- As_IMinMaxValue_1(): System_Numerics_Internal.IMinMaxValue_1$instance<CLROf<nuint>>;
4111
- As_INumber_1(): System_Numerics_Internal.INumber_1$instance<CLROf<nuint>>;
4112
- As_INumberBase_1(): System_Numerics_Internal.INumberBase_1$instance<CLROf<nuint>>;
4113
- As_ISerializable(): System_Runtime_Serialization_Internal.ISerializable$instance;
4114
-
4115
- // Structural method bridges for numeric interface constraints
4116
- Equals(other: UIntPtr): boolean;
4117
- CompareTo(obj: unknown): int;
4118
- ToString(format: string, formatProvider: IFormatProvider): string;
4119
- TryFormat(destination: Span_1<CLROf<char>>, charsWritten: { value: ref<int> }, format: ReadOnlySpan_1<CLROf<char>>, provider: IFormatProvider): boolean;
4120
- GetByteCount(): int;
4121
- TryWriteBigEndian(destination: Span_1<CLROf<byte>>, bytesWritten: { value: ref<int> }): boolean;
4122
- WriteBigEndian(destination: byte[], startIndex: int): int;
4123
- WriteBigEndian(destination: byte[]): int;
4124
- WriteBigEndian(destination: Span_1<CLROf<byte>>): int;
4125
- }
4126
-
4127
- export interface UIntPtr$instance extends System_Numerics_Internal.IMinMaxValue_1$instance<CLROf<nuint>>, System_Runtime_Serialization_Internal.ISerializable$instance {}
4128
-
4129
- export type UIntPtr = UIntPtr$instance & __UIntPtr$views;
2188
+ export type UInt64 = ulong;
4130
2189
 
2190
+ export type UIntPtr = nuint;
4131
2191
 
4132
2192
  export interface UriCreationOptions$instance {
4133
2193
  dangerousDisablePathAndQueryCanonicalization: boolean;
@@ -6426,217 +4486,7 @@ export const STAThreadAttribute: {
6426
4486
 
6427
4487
  export type STAThreadAttribute = STAThreadAttribute$instance;
6428
4488
 
6429
- export interface String$instance {
6430
- readonly chars: char;
6431
- readonly length: int;
6432
- clone(): unknown;
6433
- compareTo(value: unknown): int;
6434
- compareTo(strB: string): int;
6435
- contains(value: string): boolean;
6436
- contains(value: string, comparisonType: StringComparison): boolean;
6437
- contains(value: char): boolean;
6438
- contains(value: char, comparisonType: StringComparison): boolean;
6439
- copyTo(sourceIndex: int, destination: char[], destinationIndex: int, count: int): void;
6440
- copyTo(destination: Span_1<CLROf<char>>): void;
6441
- endsWith(value: string): boolean;
6442
- endsWith(value: string, comparisonType: StringComparison): boolean;
6443
- endsWith(value: string, ignoreCase: boolean, culture: CultureInfo): boolean;
6444
- endsWith(value: char): boolean;
6445
- enumerateRunes(): StringRuneEnumerator;
6446
- equals(obj: unknown): boolean;
6447
- equals(value: string): boolean;
6448
- equals(value: string, comparisonType: StringComparison): boolean;
6449
- getEnumerator(): CharEnumerator;
6450
- getHashCode(): int;
6451
- getHashCode(comparisonType: StringComparison): int;
6452
- getPinnableReference(): ref<char>;
6453
- getTypeCode(): TypeCode;
6454
- indexOf(value: char): int;
6455
- indexOf(value: char, startIndex: int): int;
6456
- indexOf(value: char, comparisonType: StringComparison): int;
6457
- indexOf(value: char, startIndex: int, count: int): int;
6458
- indexOf(value: string): int;
6459
- indexOf(value: string, startIndex: int): int;
6460
- indexOf(value: string, startIndex: int, count: int): int;
6461
- indexOf(value: string, comparisonType: StringComparison): int;
6462
- indexOf(value: string, startIndex: int, comparisonType: StringComparison): int;
6463
- indexOf(value: string, startIndex: int, count: int, comparisonType: StringComparison): int;
6464
- indexOfAny(anyOf: char[]): int;
6465
- indexOfAny(anyOf: char[], startIndex: int): int;
6466
- indexOfAny(anyOf: char[], startIndex: int, count: int): int;
6467
- insert(startIndex: int, value: string): string;
6468
- isNormalized(): boolean;
6469
- isNormalized(normalizationForm: NormalizationForm): boolean;
6470
- lastIndexOf(value: char): int;
6471
- lastIndexOf(value: char, startIndex: int): int;
6472
- lastIndexOf(value: char, startIndex: int, count: int): int;
6473
- lastIndexOf(value: string): int;
6474
- lastIndexOf(value: string, startIndex: int): int;
6475
- lastIndexOf(value: string, startIndex: int, count: int): int;
6476
- lastIndexOf(value: string, comparisonType: StringComparison): int;
6477
- lastIndexOf(value: string, startIndex: int, comparisonType: StringComparison): int;
6478
- lastIndexOf(value: string, startIndex: int, count: int, comparisonType: StringComparison): int;
6479
- lastIndexOfAny(anyOf: char[]): int;
6480
- lastIndexOfAny(anyOf: char[], startIndex: int): int;
6481
- lastIndexOfAny(anyOf: char[], startIndex: int, count: int): int;
6482
- normalize(): string;
6483
- normalize(normalizationForm: NormalizationForm): string;
6484
- padLeft(totalWidth: int): string;
6485
- padLeft(totalWidth: int, paddingChar: char): string;
6486
- padRight(totalWidth: int): string;
6487
- padRight(totalWidth: int, paddingChar: char): string;
6488
- remove(startIndex: int, count: int): string;
6489
- remove(startIndex: int): string;
6490
- replace(oldValue: string, newValue: string, ignoreCase: boolean, culture: CultureInfo): string;
6491
- replace(oldValue: string, newValue: string, comparisonType: StringComparison): string;
6492
- replace(oldChar: char, newChar: char): string;
6493
- replace(oldValue: string, newValue: string): string;
6494
- replaceLineEndings(): string;
6495
- replaceLineEndings(replacementText: string): string;
6496
- split(separator: char, options?: StringSplitOptions): string[];
6497
- split(separator: char, count: int, options?: StringSplitOptions): string[];
6498
- split(separator: char[]): string[];
6499
- split(separator: ReadOnlySpan_1<CLROf<char>>): string[];
6500
- split(separator: char[], count: int): string[];
6501
- split(separator: char[], options: StringSplitOptions): string[];
6502
- split(separator: char[], count: int, options: StringSplitOptions): string[];
6503
- split(separator: string, options?: StringSplitOptions): string[];
6504
- split(separator: string, count: int, options?: StringSplitOptions): string[];
6505
- split(separator: string[], options: StringSplitOptions): string[];
6506
- split(separator: string[], count: int, options: StringSplitOptions): string[];
6507
- startsWith(value: string): boolean;
6508
- startsWith(value: string, comparisonType: StringComparison): boolean;
6509
- startsWith(value: string, ignoreCase: boolean, culture: CultureInfo): boolean;
6510
- startsWith(value: char): boolean;
6511
- substring(startIndex: int): string;
6512
- substring(startIndex: int, length: int): string;
6513
- toCharArray(): char[];
6514
- toCharArray(startIndex: int, length: int): char[];
6515
- toLower(): string;
6516
- toLower(culture: CultureInfo): string;
6517
- toLowerInvariant(): string;
6518
- toString(): string;
6519
- toString(provider: IFormatProvider): string;
6520
- toUpper(): string;
6521
- toUpper(culture: CultureInfo): string;
6522
- toUpperInvariant(): string;
6523
- trim(): string;
6524
- trim(trimChar: char): string;
6525
- trim(trimChars: char[]): string;
6526
- trim(trimChars: ReadOnlySpan_1<CLROf<char>>): string;
6527
- trimEnd(): string;
6528
- trimEnd(trimChar: char): string;
6529
- trimEnd(trimChars: char[]): string;
6530
- trimEnd(trimChars: ReadOnlySpan_1<CLROf<char>>): string;
6531
- trimStart(): string;
6532
- trimStart(trimChar: char): string;
6533
- trimStart(trimChars: char[]): string;
6534
- trimStart(trimChars: ReadOnlySpan_1<CLROf<char>>): string;
6535
- tryCopyTo(destination: Span_1<CLROf<char>>): boolean;
6536
- }
6537
-
6538
-
6539
- export const String: {
6540
- new(value: char[]): String$instance;
6541
- new(value: char[], startIndex: int, length: int): String$instance;
6542
- new(value: ptr<char>): String$instance;
6543
- new(value: ptr<char>, startIndex: int, length: int): String$instance;
6544
- new(value: ptr<sbyte>): String$instance;
6545
- new(value: ptr<sbyte>, startIndex: int, length: int): String$instance;
6546
- new(value: ptr<sbyte>, startIndex: int, length: int, enc: Encoding): String$instance;
6547
- new(c: char, count: int): String$instance;
6548
- new(value: ReadOnlySpan_1<CLROf<char>>): String$instance;
6549
- readonly empty: string;
6550
- compare(strA: string, indexA: int, strB: string, indexB: int, length: int, ignoreCase: boolean, culture: CultureInfo): int;
6551
- compare(strA: string, indexA: int, strB: string, indexB: int, length: int, ignoreCase: boolean): int;
6552
- compare(strA: string, indexA: int, strB: string, indexB: int, length: int, culture: CultureInfo, options: CompareOptions): int;
6553
- compare(strA: string, indexA: int, strB: string, indexB: int, length: int, comparisonType: StringComparison): int;
6554
- compare(strA: string, indexA: int, strB: string, indexB: int, length: int): int;
6555
- compare(strA: string, strB: string, ignoreCase: boolean, culture: CultureInfo): int;
6556
- compare(strA: string, strB: string, ignoreCase: boolean): int;
6557
- compare(strA: string, strB: string, culture: CultureInfo, options: CompareOptions): int;
6558
- compare(strA: string, strB: string, comparisonType: StringComparison): int;
6559
- compare(strA: string, strB: string): int;
6560
- compareOrdinal(strA: string, indexA: int, strB: string, indexB: int, length: int): int;
6561
- compareOrdinal(strA: string, strB: string): int;
6562
- concat<T>(values: IEnumerable_1<T>): string;
6563
- concat(values: IEnumerable_1<CLROf<string>>): string;
6564
- concat(arg0: unknown, arg1: unknown, arg2: unknown): string;
6565
- concat(arg0: unknown, arg1: unknown): string;
6566
- concat(arg0: unknown): string;
6567
- concat(args: unknown[]): string;
6568
- concat(str0: ReadOnlySpan_1<CLROf<char>>, str1: ReadOnlySpan_1<CLROf<char>>, str2: ReadOnlySpan_1<CLROf<char>>, str3: ReadOnlySpan_1<CLROf<char>>): string;
6569
- concat(str0: ReadOnlySpan_1<CLROf<char>>, str1: ReadOnlySpan_1<CLROf<char>>, str2: ReadOnlySpan_1<CLROf<char>>): string;
6570
- concat(str0: ReadOnlySpan_1<CLROf<char>>, str1: ReadOnlySpan_1<CLROf<char>>): string;
6571
- concat(args: ReadOnlySpan_1<unknown>): string;
6572
- concat(values: ReadOnlySpan_1<CLROf<string>>): string;
6573
- concat(str0: string, str1: string, str2: string, str3: string): string;
6574
- concat(str0: string, str1: string, str2: string): string;
6575
- concat(str0: string, str1: string): string;
6576
- concat(values: string[]): string;
6577
- copy(str: string): string;
6578
- create(provider: IFormatProvider, handler: { value: ref<DefaultInterpolatedStringHandler> }): string;
6579
- create(provider: IFormatProvider, initialBuffer: Span_1<CLROf<char>>, handler: { value: ref<DefaultInterpolatedStringHandler> }): string;
6580
- create<TState>(length: int, state: TState, action: SpanAction_2<CLROf<char>, TState>): string;
6581
- equals(a: string, b: string, comparisonType: StringComparison): boolean;
6582
- equals(a: string, b: string): boolean;
6583
- format(provider: IFormatProvider, format: string, arg0: unknown, arg1: unknown, arg2: unknown): string;
6584
- format(provider: IFormatProvider, format: string, arg0: unknown, arg1: unknown): string;
6585
- format(provider: IFormatProvider, format: string, arg0: unknown): string;
6586
- format(provider: IFormatProvider, format: string, args: unknown[]): string;
6587
- format(provider: IFormatProvider, format: string, args: ReadOnlySpan_1<unknown>): string;
6588
- format(provider: IFormatProvider, format: CompositeFormat, args: unknown[]): string;
6589
- format(provider: IFormatProvider, format: CompositeFormat, args: ReadOnlySpan_1<unknown>): string;
6590
- format<TArg0, TArg1, TArg2>(provider: IFormatProvider, format: CompositeFormat, arg0: TArg0, arg1: TArg1, arg2: TArg2): string;
6591
- format<TArg0, TArg1>(provider: IFormatProvider, format: CompositeFormat, arg0: TArg0, arg1: TArg1): string;
6592
- format<TArg0>(provider: IFormatProvider, format: CompositeFormat, arg0: TArg0): string;
6593
- format(format: string, arg0: unknown, arg1: unknown, arg2: unknown): string;
6594
- format(format: string, arg0: unknown, arg1: unknown): string;
6595
- format(format: string, arg0: unknown): string;
6596
- format(format: string, args: unknown[]): string;
6597
- format(format: string, args: ReadOnlySpan_1<unknown>): string;
6598
- getHashCode(value: ReadOnlySpan_1<CLROf<char>>, comparisonType: StringComparison): int;
6599
- getHashCode(value: ReadOnlySpan_1<CLROf<char>>): int;
6600
- intern(str: string): string;
6601
- isInterned(str: string): string;
6602
- isNullOrEmpty(value: string): boolean;
6603
- isNullOrWhiteSpace(value: string): boolean;
6604
- join<T>(separator: char, values: IEnumerable_1<T>): string;
6605
- join(separator: char, values: unknown[]): string;
6606
- join(separator: char, values: ReadOnlySpan_1<unknown>): string;
6607
- join(separator: char, value: ReadOnlySpan_1<CLROf<string>>): string;
6608
- join(separator: char, value: string[], startIndex: int, count: int): string;
6609
- join(separator: char, value: string[]): string;
6610
- join<T>(separator: string, values: IEnumerable_1<T>): string;
6611
- join(separator: string, values: IEnumerable_1<CLROf<string>>): string;
6612
- join(separator: string, values: unknown[]): string;
6613
- join(separator: string, values: ReadOnlySpan_1<unknown>): string;
6614
- join(separator: string, value: ReadOnlySpan_1<CLROf<string>>): string;
6615
- join(separator: string, value: string[], startIndex: int, count: int): string;
6616
- join(separator: string, value: string[]): string;
6617
- };
6618
-
6619
-
6620
- export interface __String$views {
6621
- As_IEnumerable_1(): System_Collections_Generic_Internal.IEnumerable_1$instance<CLROf<char>>;
6622
- As_IEnumerable(): System_Collections_Internal.IEnumerable$instance;
6623
- As_ICloneable(): ICloneable$instance;
6624
- As_IComparable(): IComparable$instance;
6625
- As_IComparable_1(): IComparable_1$instance<CLROf<string>>;
6626
- As_IConvertible(): IConvertible$instance;
6627
- As_IEquatable_1(): IEquatable_1$instance<CLROf<string>>;
6628
- As_IParsable_1(): IParsable_1$instance<CLROf<string>>;
6629
- As_ISpanParsable_1(): ISpanParsable_1$instance<CLROf<string>>;
6630
-
6631
- // Structural method bridges for numeric interface constraints
6632
- Equals(other: String): boolean;
6633
- CompareTo(obj: unknown): int;
6634
- }
6635
-
6636
- export interface String$instance extends ICloneable$instance, IComparable$instance, ISpanParsable_1$instance<CLROf<string>> {}
6637
-
6638
- export type String = String$instance & __String$views;
6639
-
4489
+ export type String = string;
6640
4490
 
6641
4491
  export interface StringComparer$instance {
6642
4492
  compare(x: unknown, y: unknown): int;