-
Notifications
You must be signed in to change notification settings - Fork 1.6k
/
Copy pathInt128.xml
5454 lines (5419 loc) · 353 KB
/
Int128.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<Type Name="Int128" FullName="System.Int128">
<TypeSignature Language="C#" Value="public readonly struct Int128 : IComparable<Int128>, IEquatable<Int128>, IParsable<Int128>, ISpanParsable<Int128>, System.Numerics.IAdditionOperators<Int128,Int128,Int128>, System.Numerics.IAdditiveIdentity<Int128,Int128>, System.Numerics.IBinaryInteger<Int128>, System.Numerics.IBinaryNumber<Int128>, System.Numerics.IBitwiseOperators<Int128,Int128,Int128>, System.Numerics.IComparisonOperators<Int128,Int128,bool>, System.Numerics.IDecrementOperators<Int128>, System.Numerics.IDivisionOperators<Int128,Int128,Int128>, System.Numerics.IEqualityOperators<Int128,Int128,bool>, System.Numerics.IIncrementOperators<Int128>, System.Numerics.IMinMaxValue<Int128>, System.Numerics.IModulusOperators<Int128,Int128,Int128>, System.Numerics.IMultiplicativeIdentity<Int128,Int128>, System.Numerics.IMultiplyOperators<Int128,Int128,Int128>, System.Numerics.INumber<Int128>, System.Numerics.INumberBase<Int128>, System.Numerics.IShiftOperators<Int128,int,Int128>, System.Numerics.ISignedNumber<Int128>, System.Numerics.ISubtractionOperators<Int128,Int128,Int128>, System.Numerics.IUnaryNegationOperators<Int128,Int128>, System.Numerics.IUnaryPlusOperators<Int128,Int128>" FrameworkAlternate="net-7.0" />
<TypeSignature Language="ILAsm" Value=".class public sequential ansi sealed beforefieldinit Int128 extends System.ValueType implements class System.IComparable, class System.IComparable`1<valuetype System.Int128>, class System.IEquatable`1<valuetype System.Int128>, class System.IFormattable, class System.IParsable`1<valuetype System.Int128>, class System.ISpanFormattable, class System.ISpanParsable`1<valuetype System.Int128>, class System.Numerics.IAdditionOperators`3<valuetype System.Int128, valuetype System.Int128, valuetype System.Int128>, class System.Numerics.IAdditiveIdentity`2<valuetype System.Int128, valuetype System.Int128>, class System.Numerics.IBinaryInteger`1<valuetype System.Int128>, class System.Numerics.IBinaryNumber`1<valuetype System.Int128>, class System.Numerics.IBitwiseOperators`3<valuetype System.Int128, valuetype System.Int128, valuetype System.Int128>, class System.Numerics.IComparisonOperators`3<valuetype System.Int128, valuetype System.Int128, bool>, class System.Numerics.IDecrementOperators`1<valuetype System.Int128>, class System.Numerics.IDivisionOperators`3<valuetype System.Int128, valuetype System.Int128, valuetype System.Int128>, class System.Numerics.IEqualityOperators`3<valuetype System.Int128, valuetype System.Int128, bool>, class System.Numerics.IIncrementOperators`1<valuetype System.Int128>, class System.Numerics.IMinMaxValue`1<valuetype System.Int128>, class System.Numerics.IModulusOperators`3<valuetype System.Int128, valuetype System.Int128, valuetype System.Int128>, class System.Numerics.IMultiplicativeIdentity`2<valuetype System.Int128, valuetype System.Int128>, class System.Numerics.IMultiplyOperators`3<valuetype System.Int128, valuetype System.Int128, valuetype System.Int128>, class System.Numerics.INumber`1<valuetype System.Int128>, class System.Numerics.INumberBase`1<valuetype System.Int128>, class System.Numerics.IShiftOperators`3<valuetype System.Int128, int32, valuetype System.Int128>, class System.Numerics.ISignedNumber`1<valuetype System.Int128>, class System.Numerics.ISubtractionOperators`3<valuetype System.Int128, valuetype System.Int128, valuetype System.Int128>, class System.Numerics.IUnaryNegationOperators`2<valuetype System.Int128, valuetype System.Int128>, class System.Numerics.IUnaryPlusOperators`2<valuetype System.Int128, valuetype System.Int128>" FrameworkAlternate="net-7.0" />
<TypeSignature Language="DocId" Value="T:System.Int128" />
<TypeSignature Language="VB.NET" Value="Public Structure Int128
Implements IAdditionOperators(Of Int128, Int128, Int128), IAdditiveIdentity(Of Int128, Int128), IBinaryInteger(Of Int128), IBinaryNumber(Of Int128), IBitwiseOperators(Of Int128, Int128, Int128), IComparable(Of Int128), IComparisonOperators(Of Int128, Int128, Boolean), IDecrementOperators(Of Int128), IDivisionOperators(Of Int128, Int128, Int128), IEqualityOperators(Of Int128, Int128, Boolean), IEquatable(Of Int128), IIncrementOperators(Of Int128), IMinMaxValue(Of Int128), IModulusOperators(Of Int128, Int128, Int128), IMultiplicativeIdentity(Of Int128, Int128), IMultiplyOperators(Of Int128, Int128, Int128), INumber(Of Int128), INumberBase(Of Int128), IParsable(Of Int128), IShiftOperators(Of Int128, Integer, Int128), ISignedNumber(Of Int128), ISpanParsable(Of Int128), ISubtractionOperators(Of Int128, Int128, Int128), IUnaryNegationOperators(Of Int128, Int128), IUnaryPlusOperators(Of Int128, Int128)" FrameworkAlternate="net-7.0" />
<TypeSignature Language="F#" Value="type Int128 = struct
 interface IFormattable
 interface IParsable<Int128>
 interface ISpanFormattable
 interface ISpanParsable<Int128>
 interface IAdditionOperators<Int128, Int128, Int128>
 interface IAdditiveIdentity<Int128, Int128>
 interface IBinaryInteger<Int128>
 interface IBinaryNumber<Int128>
 interface IBitwiseOperators<Int128, Int128, Int128>
 interface IComparisonOperators<Int128, Int128, bool>
 interface IEqualityOperators<Int128, Int128, bool>
 interface IDecrementOperators<Int128>
 interface IDivisionOperators<Int128, Int128, Int128>
 interface IIncrementOperators<Int128>
 interface IModulusOperators<Int128, Int128, Int128>
 interface IMultiplicativeIdentity<Int128, Int128>
 interface IMultiplyOperators<Int128, Int128, Int128>
 interface INumber<Int128>
 interface INumberBase<Int128>
 interface ISubtractionOperators<Int128, Int128, Int128>
 interface IUnaryNegationOperators<Int128, Int128>
 interface IUnaryPlusOperators<Int128, Int128>
 interface IShiftOperators<Int128, int, Int128>
 interface IMinMaxValue<Int128>
 interface ISignedNumber<Int128>" FrameworkAlternate="net-7.0" />
<TypeSignature Language="C++ CLI" Value="public value class Int128 : IComparable<Int128>, IEquatable<Int128>, IParsable<Int128>, ISpanParsable<Int128>, System::Numerics::IAdditionOperators<Int128, Int128, Int128>, System::Numerics::IAdditiveIdentity<Int128, Int128>, System::Numerics::IBinaryInteger<Int128>, System::Numerics::IBinaryNumber<Int128>, System::Numerics::IBitwiseOperators<Int128, Int128, Int128>, System::Numerics::IComparisonOperators<Int128, Int128, bool>, System::Numerics::IDecrementOperators<Int128>, System::Numerics::IDivisionOperators<Int128, Int128, Int128>, System::Numerics::IEqualityOperators<Int128, Int128, bool>, System::Numerics::IIncrementOperators<Int128>, System::Numerics::IMinMaxValue<Int128>, System::Numerics::IModulusOperators<Int128, Int128, Int128>, System::Numerics::IMultiplicativeIdentity<Int128, Int128>, System::Numerics::IMultiplyOperators<Int128, Int128, Int128>, System::Numerics::INumber<Int128>, System::Numerics::INumberBase<Int128>, System::Numerics::IShiftOperators<Int128, int, Int128>, System::Numerics::ISignedNumber<Int128>, System::Numerics::ISubtractionOperators<Int128, Int128, Int128>, System::Numerics::IUnaryNegationOperators<Int128, Int128>, System::Numerics::IUnaryPlusOperators<Int128, Int128>" FrameworkAlternate="net-7.0" />
<TypeSignature Language="C#" Value="public readonly struct Int128 : IComparable<Int128>, IEquatable<Int128>, IParsable<Int128>, ISpanParsable<Int128>, IUtf8SpanParsable<Int128>, System.Numerics.IAdditionOperators<Int128,Int128,Int128>, System.Numerics.IAdditiveIdentity<Int128,Int128>, System.Numerics.IBinaryInteger<Int128>, System.Numerics.IBinaryNumber<Int128>, System.Numerics.IBitwiseOperators<Int128,Int128,Int128>, System.Numerics.IComparisonOperators<Int128,Int128,bool>, System.Numerics.IDecrementOperators<Int128>, System.Numerics.IDivisionOperators<Int128,Int128,Int128>, System.Numerics.IEqualityOperators<Int128,Int128,bool>, System.Numerics.IIncrementOperators<Int128>, System.Numerics.IMinMaxValue<Int128>, System.Numerics.IModulusOperators<Int128,Int128,Int128>, System.Numerics.IMultiplicativeIdentity<Int128,Int128>, System.Numerics.IMultiplyOperators<Int128,Int128,Int128>, System.Numerics.INumber<Int128>, System.Numerics.INumberBase<Int128>, System.Numerics.IShiftOperators<Int128,int,Int128>, System.Numerics.ISignedNumber<Int128>, System.Numerics.ISubtractionOperators<Int128,Int128,Int128>, System.Numerics.IUnaryNegationOperators<Int128,Int128>, System.Numerics.IUnaryPlusOperators<Int128,Int128>" FrameworkAlternate="net-8.0;net-9.0" />
<TypeSignature Language="ILAsm" Value=".class public sequential ansi sealed beforefieldinit Int128 extends System.ValueType implements class System.IComparable, class System.IComparable`1<valuetype System.Int128>, class System.IEquatable`1<valuetype System.Int128>, class System.IFormattable, class System.IParsable`1<valuetype System.Int128>, class System.ISpanFormattable, class System.ISpanParsable`1<valuetype System.Int128>, class System.IUtf8SpanFormattable, class System.IUtf8SpanParsable`1<valuetype System.Int128>, class System.Numerics.IAdditionOperators`3<valuetype System.Int128, valuetype System.Int128, valuetype System.Int128>, class System.Numerics.IAdditiveIdentity`2<valuetype System.Int128, valuetype System.Int128>, class System.Numerics.IBinaryInteger`1<valuetype System.Int128>, class System.Numerics.IBinaryNumber`1<valuetype System.Int128>, class System.Numerics.IBitwiseOperators`3<valuetype System.Int128, valuetype System.Int128, valuetype System.Int128>, class System.Numerics.IComparisonOperators`3<valuetype System.Int128, valuetype System.Int128, bool>, class System.Numerics.IDecrementOperators`1<valuetype System.Int128>, class System.Numerics.IDivisionOperators`3<valuetype System.Int128, valuetype System.Int128, valuetype System.Int128>, class System.Numerics.IEqualityOperators`3<valuetype System.Int128, valuetype System.Int128, bool>, class System.Numerics.IIncrementOperators`1<valuetype System.Int128>, class System.Numerics.IMinMaxValue`1<valuetype System.Int128>, class System.Numerics.IModulusOperators`3<valuetype System.Int128, valuetype System.Int128, valuetype System.Int128>, class System.Numerics.IMultiplicativeIdentity`2<valuetype System.Int128, valuetype System.Int128>, class System.Numerics.IMultiplyOperators`3<valuetype System.Int128, valuetype System.Int128, valuetype System.Int128>, class System.Numerics.INumber`1<valuetype System.Int128>, class System.Numerics.INumberBase`1<valuetype System.Int128>, class System.Numerics.IShiftOperators`3<valuetype System.Int128, int32, valuetype System.Int128>, class System.Numerics.ISignedNumber`1<valuetype System.Int128>, class System.Numerics.ISubtractionOperators`3<valuetype System.Int128, valuetype System.Int128, valuetype System.Int128>, class System.Numerics.IUnaryNegationOperators`2<valuetype System.Int128, valuetype System.Int128>, class System.Numerics.IUnaryPlusOperators`2<valuetype System.Int128, valuetype System.Int128>" FrameworkAlternate="net-8.0;net-9.0" />
<TypeSignature Language="VB.NET" Value="Public Structure Int128
Implements IAdditionOperators(Of Int128, Int128, Int128), IAdditiveIdentity(Of Int128, Int128), IBinaryInteger(Of Int128), IBinaryNumber(Of Int128), IBitwiseOperators(Of Int128, Int128, Int128), IComparable(Of Int128), IComparisonOperators(Of Int128, Int128, Boolean), IDecrementOperators(Of Int128), IDivisionOperators(Of Int128, Int128, Int128), IEqualityOperators(Of Int128, Int128, Boolean), IEquatable(Of Int128), IIncrementOperators(Of Int128), IMinMaxValue(Of Int128), IModulusOperators(Of Int128, Int128, Int128), IMultiplicativeIdentity(Of Int128, Int128), IMultiplyOperators(Of Int128, Int128, Int128), INumber(Of Int128), INumberBase(Of Int128), IParsable(Of Int128), IShiftOperators(Of Int128, Integer, Int128), ISignedNumber(Of Int128), ISpanParsable(Of Int128), ISubtractionOperators(Of Int128, Int128, Int128), IUnaryNegationOperators(Of Int128, Int128), IUnaryPlusOperators(Of Int128, Int128), IUtf8SpanParsable(Of Int128)" FrameworkAlternate="net-8.0;net-9.0" />
<TypeSignature Language="F#" Value="type Int128 = struct
 interface IFormattable
 interface IParsable<Int128>
 interface ISpanFormattable
 interface ISpanParsable<Int128>
 interface IAdditionOperators<Int128, Int128, Int128>
 interface IAdditiveIdentity<Int128, Int128>
 interface IBinaryInteger<Int128>
 interface IBinaryNumber<Int128>
 interface IBitwiseOperators<Int128, Int128, Int128>
 interface IComparisonOperators<Int128, Int128, bool>
 interface IEqualityOperators<Int128, Int128, bool>
 interface IDecrementOperators<Int128>
 interface IDivisionOperators<Int128, Int128, Int128>
 interface IIncrementOperators<Int128>
 interface IModulusOperators<Int128, Int128, Int128>
 interface IMultiplicativeIdentity<Int128, Int128>
 interface IMultiplyOperators<Int128, Int128, Int128>
 interface INumber<Int128>
 interface INumberBase<Int128>
 interface ISubtractionOperators<Int128, Int128, Int128>
 interface IUnaryNegationOperators<Int128, Int128>
 interface IUnaryPlusOperators<Int128, Int128>
 interface IUtf8SpanFormattable
 interface IUtf8SpanParsable<Int128>
 interface IShiftOperators<Int128, int, Int128>
 interface IMinMaxValue<Int128>
 interface ISignedNumber<Int128>" FrameworkAlternate="net-8.0" />
<TypeSignature Language="C++ CLI" Value="public value class Int128 : IComparable<Int128>, IEquatable<Int128>, IParsable<Int128>, ISpanParsable<Int128>, IUtf8SpanParsable<Int128>, System::Numerics::IAdditionOperators<Int128, Int128, Int128>, System::Numerics::IAdditiveIdentity<Int128, Int128>, System::Numerics::IBinaryInteger<Int128>, System::Numerics::IBinaryNumber<Int128>, System::Numerics::IBitwiseOperators<Int128, Int128, Int128>, System::Numerics::IComparisonOperators<Int128, Int128, bool>, System::Numerics::IDecrementOperators<Int128>, System::Numerics::IDivisionOperators<Int128, Int128, Int128>, System::Numerics::IEqualityOperators<Int128, Int128, bool>, System::Numerics::IIncrementOperators<Int128>, System::Numerics::IMinMaxValue<Int128>, System::Numerics::IModulusOperators<Int128, Int128, Int128>, System::Numerics::IMultiplicativeIdentity<Int128, Int128>, System::Numerics::IMultiplyOperators<Int128, Int128, Int128>, System::Numerics::INumber<Int128>, System::Numerics::INumberBase<Int128>, System::Numerics::IShiftOperators<Int128, int, Int128>, System::Numerics::ISignedNumber<Int128>, System::Numerics::ISubtractionOperators<Int128, Int128, Int128>, System::Numerics::IUnaryNegationOperators<Int128, Int128>, System::Numerics::IUnaryPlusOperators<Int128, Int128>" FrameworkAlternate="net-8.0;net-9.0" />
<TypeSignature Language="F#" Value="type Int128 = struct
 interface IFormattable
 interface IParsable<Int128>
 interface ISpanFormattable
 interface ISpanParsable<Int128>
 interface IUtf8SpanFormattable
 interface IUtf8SpanParsable<Int128>
 interface IAdditionOperators<Int128, Int128, Int128>
 interface IAdditiveIdentity<Int128, Int128>
 interface IBinaryInteger<Int128>
 interface IBinaryNumber<Int128>
 interface IBitwiseOperators<Int128, Int128, Int128>
 interface IComparisonOperators<Int128, Int128, bool>
 interface IEqualityOperators<Int128, Int128, bool>
 interface IDecrementOperators<Int128>
 interface IDivisionOperators<Int128, Int128, Int128>
 interface IIncrementOperators<Int128>
 interface IModulusOperators<Int128, Int128, Int128>
 interface IMultiplicativeIdentity<Int128, Int128>
 interface IMultiplyOperators<Int128, Int128, Int128>
 interface INumber<Int128>
 interface INumberBase<Int128>
 interface ISubtractionOperators<Int128, Int128, Int128>
 interface IUnaryNegationOperators<Int128, Int128>
 interface IUnaryPlusOperators<Int128, Int128>
 interface IShiftOperators<Int128, int, Int128>
 interface IMinMaxValue<Int128>
 interface ISignedNumber<Int128>" FrameworkAlternate="net-9.0" />
<AssemblyInfo>
<AssemblyName>System.Runtime</AssemblyName>
<AssemblyVersion>7.0.0.0</AssemblyVersion>
<AssemblyVersion>8.0.0.0</AssemblyVersion>
<AssemblyVersion>9.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Base>
<BaseTypeName>System.ValueType</BaseTypeName>
</Base>
<Interfaces>
<Interface>
<InterfaceName>System.IComparable</InterfaceName>
</Interface>
<Interface>
<InterfaceName>System.IComparable<System.Int128></InterfaceName>
</Interface>
<Interface>
<InterfaceName>System.IComparable<TSelf></InterfaceName>
</Interface>
<Interface>
<InterfaceName>System.IEquatable<System.Int128></InterfaceName>
</Interface>
<Interface>
<InterfaceName>System.IEquatable<TSelf></InterfaceName>
</Interface>
<Interface>
<InterfaceName>System.IFormattable</InterfaceName>
</Interface>
<Interface>
<InterfaceName>System.IParsable<System.Int128></InterfaceName>
</Interface>
<Interface>
<InterfaceName>System.IParsable<TSelf></InterfaceName>
</Interface>
<Interface>
<InterfaceName>System.ISpanFormattable</InterfaceName>
</Interface>
<Interface>
<InterfaceName>System.ISpanParsable<System.Int128></InterfaceName>
</Interface>
<Interface>
<InterfaceName>System.ISpanParsable<TSelf></InterfaceName>
</Interface>
<Interface>
<InterfaceName>System.Numerics.IAdditionOperators<System.Int128,System.Int128,System.Int128></InterfaceName>
</Interface>
<Interface>
<InterfaceName>System.Numerics.IAdditionOperators<TSelf,TSelf,TSelf></InterfaceName>
</Interface>
<Interface>
<InterfaceName>System.Numerics.IAdditiveIdentity<System.Int128,System.Int128></InterfaceName>
</Interface>
<Interface>
<InterfaceName>System.Numerics.IAdditiveIdentity<TSelf,TSelf></InterfaceName>
</Interface>
<Interface>
<InterfaceName>System.Numerics.IBinaryInteger<System.Int128></InterfaceName>
</Interface>
<Interface>
<InterfaceName>System.Numerics.IBinaryNumber<System.Int128></InterfaceName>
</Interface>
<Interface>
<InterfaceName>System.Numerics.IBinaryNumber<TSelf></InterfaceName>
</Interface>
<Interface>
<InterfaceName>System.Numerics.IBitwiseOperators<System.Int128,System.Int128,System.Int128></InterfaceName>
</Interface>
<Interface>
<InterfaceName>System.Numerics.IBitwiseOperators<TSelf,TSelf,TSelf></InterfaceName>
</Interface>
<Interface>
<InterfaceName>System.Numerics.IComparisonOperators<System.Int128,System.Int128,System.Boolean></InterfaceName>
</Interface>
<Interface>
<InterfaceName>System.Numerics.IComparisonOperators<TSelf,TSelf,System.Boolean></InterfaceName>
</Interface>
<Interface>
<InterfaceName>System.Numerics.IDecrementOperators<System.Int128></InterfaceName>
</Interface>
<Interface>
<InterfaceName>System.Numerics.IDecrementOperators<TSelf></InterfaceName>
</Interface>
<Interface>
<InterfaceName>System.Numerics.IDivisionOperators<System.Int128,System.Int128,System.Int128></InterfaceName>
</Interface>
<Interface>
<InterfaceName>System.Numerics.IDivisionOperators<TSelf,TSelf,TSelf></InterfaceName>
</Interface>
<Interface>
<InterfaceName>System.Numerics.IEqualityOperators<System.Int128,System.Int128,System.Boolean></InterfaceName>
</Interface>
<Interface>
<InterfaceName>System.Numerics.IEqualityOperators<TSelf,TOther,TResult></InterfaceName>
</Interface>
<Interface>
<InterfaceName>System.Numerics.IEqualityOperators<TSelf,TSelf,System.Boolean></InterfaceName>
</Interface>
<Interface>
<InterfaceName>System.Numerics.IIncrementOperators<System.Int128></InterfaceName>
</Interface>
<Interface>
<InterfaceName>System.Numerics.IIncrementOperators<TSelf></InterfaceName>
</Interface>
<Interface>
<InterfaceName>System.Numerics.IMinMaxValue<System.Int128></InterfaceName>
</Interface>
<Interface>
<InterfaceName>System.Numerics.IModulusOperators<System.Int128,System.Int128,System.Int128></InterfaceName>
</Interface>
<Interface>
<InterfaceName>System.Numerics.IModulusOperators<TSelf,TSelf,TSelf></InterfaceName>
</Interface>
<Interface>
<InterfaceName>System.Numerics.IMultiplicativeIdentity<System.Int128,System.Int128></InterfaceName>
</Interface>
<Interface>
<InterfaceName>System.Numerics.IMultiplicativeIdentity<TSelf,TSelf></InterfaceName>
</Interface>
<Interface>
<InterfaceName>System.Numerics.IMultiplyOperators<System.Int128,System.Int128,System.Int128></InterfaceName>
</Interface>
<Interface>
<InterfaceName>System.Numerics.IMultiplyOperators<TSelf,TSelf,TSelf></InterfaceName>
</Interface>
<Interface>
<InterfaceName>System.Numerics.INumber<System.Int128></InterfaceName>
</Interface>
<Interface>
<InterfaceName>System.Numerics.INumber<TSelf></InterfaceName>
</Interface>
<Interface>
<InterfaceName>System.Numerics.INumberBase<System.Int128></InterfaceName>
</Interface>
<Interface>
<InterfaceName>System.Numerics.INumberBase<TSelf></InterfaceName>
</Interface>
<Interface>
<InterfaceName>System.Numerics.IShiftOperators<System.Int128,System.Int32,System.Int128></InterfaceName>
</Interface>
<Interface>
<InterfaceName>System.Numerics.IShiftOperators<TSelf,System.Int32,TSelf></InterfaceName>
</Interface>
<Interface>
<InterfaceName>System.Numerics.ISignedNumber<System.Int128></InterfaceName>
</Interface>
<Interface>
<InterfaceName>System.Numerics.ISubtractionOperators<System.Int128,System.Int128,System.Int128></InterfaceName>
</Interface>
<Interface>
<InterfaceName>System.Numerics.ISubtractionOperators<TSelf,TSelf,TSelf></InterfaceName>
</Interface>
<Interface>
<InterfaceName>System.Numerics.IUnaryNegationOperators<System.Int128,System.Int128></InterfaceName>
</Interface>
<Interface>
<InterfaceName>System.Numerics.IUnaryNegationOperators<TSelf,TSelf></InterfaceName>
</Interface>
<Interface>
<InterfaceName>System.Numerics.IUnaryPlusOperators<System.Int128,System.Int128></InterfaceName>
</Interface>
<Interface>
<InterfaceName>System.Numerics.IUnaryPlusOperators<TSelf,TSelf></InterfaceName>
</Interface>
<Interface FrameworkAlternate="net-8.0;net-9.0">
<InterfaceName>System.IUtf8SpanFormattable</InterfaceName>
</Interface>
<Interface FrameworkAlternate="net-8.0;net-9.0">
<InterfaceName>System.IUtf8SpanParsable<System.Int128></InterfaceName>
</Interface>
<Interface FrameworkAlternate="net-8.0;net-9.0">
<InterfaceName>System.IUtf8SpanParsable<TSelf></InterfaceName>
</Interface>
</Interfaces>
<Attributes>
<Attribute>
<AttributeName Language="C#">[System.Runtime.CompilerServices.IsReadOnly]</AttributeName>
<AttributeName Language="F#">[<System.Runtime.CompilerServices.IsReadOnly>]</AttributeName>
</Attribute>
</Attributes>
<Docs>
<summary>Represents a 128-bit signed integer.</summary>
<remarks>To be added.</remarks>
</Docs>
<Members>
<Member MemberName=".ctor">
<MemberSignature Language="C#" Value="public Int128 (ulong upper, ulong lower);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig specialname rtspecialname instance void .ctor(unsigned int64 upper, unsigned int64 lower) cil managed" />
<MemberSignature Language="DocId" Value="M:System.Int128.#ctor(System.UInt64,System.UInt64)" />
<MemberSignature Language="VB.NET" Value="Public Sub New (upper As ULong, lower As ULong)" />
<MemberSignature Language="F#" Value="new Int128 : uint64 * uint64 -> Int128" Usage="new System.Int128 (upper, lower)" />
<MemberSignature Language="C++ CLI" Value="public:
 Int128(System::UInt64 upper, System::UInt64 lower);" />
<MemberType>Constructor</MemberType>
<AssemblyInfo>
<AssemblyName>System.Runtime</AssemblyName>
<AssemblyVersion>7.0.0.0</AssemblyVersion>
<AssemblyVersion>8.0.0.0</AssemblyVersion>
<AssemblyVersion>9.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[System.CLSCompliant(false)]</AttributeName>
<AttributeName Language="F#">[<System.CLSCompliant(false)>]</AttributeName>
</Attribute>
</Attributes>
<Parameters>
<Parameter Name="upper" Type="System.UInt64" />
<Parameter Name="lower" Type="System.UInt64" />
</Parameters>
<Docs>
<param name="upper">The upper 64-bits of the 128-bit value.</param>
<param name="lower">The lower 64-bits of the 128-bit value.</param>
<summary>Initializes a new instance of the <see cref="T:System.Int128" /> struct.</summary>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="Abs">
<MemberSignature Language="C#" Value="public static Int128 Abs (Int128 value);" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig valuetype System.Int128 Abs(valuetype System.Int128 value) cil managed" />
<MemberSignature Language="DocId" Value="M:System.Int128.Abs(System.Int128)" />
<MemberSignature Language="VB.NET" Value="Public Shared Function Abs (value As Int128) As Int128" />
<MemberSignature Language="F#" Value="static member Abs : Int128 -> Int128" Usage="System.Int128.Abs value" />
<MemberSignature Language="C++ CLI" Value="public:
 static Int128 Abs(Int128 value) = System::Numerics::INumberBase<Int128>::Abs;" />
<MemberType>Method</MemberType>
<Implements>
<InterfaceMember>M:System.Numerics.INumberBase`1.Abs(`0)</InterfaceMember>
</Implements>
<AssemblyInfo>
<AssemblyName>System.Runtime</AssemblyName>
<AssemblyVersion>7.0.0.0</AssemblyVersion>
<AssemblyVersion>8.0.0.0</AssemblyVersion>
<AssemblyVersion>9.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Int128</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="value" Type="System.Int128" />
</Parameters>
<Docs>
<param name="value">The value for which to get its absolute.</param>
<summary>Computes the absolute of a value.</summary>
<returns>The absolute of <paramref name="value" />.</returns>
<remarks>To be added.</remarks>
<inheritdoc cref="M:System.Numerics.INumberBase`1.Abs(`0)" />
</Docs>
</Member>
<Member MemberName="Clamp">
<MemberSignature Language="C#" Value="public static Int128 Clamp (Int128 value, Int128 min, Int128 max);" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig valuetype System.Int128 Clamp(valuetype System.Int128 value, valuetype System.Int128 min, valuetype System.Int128 max) cil managed" />
<MemberSignature Language="DocId" Value="M:System.Int128.Clamp(System.Int128,System.Int128,System.Int128)" />
<MemberSignature Language="VB.NET" Value="Public Shared Function Clamp (value As Int128, min As Int128, max As Int128) As Int128" />
<MemberSignature Language="F#" Value="static member Clamp : Int128 * Int128 * Int128 -> Int128" Usage="System.Int128.Clamp (value, min, max)" />
<MemberSignature Language="C++ CLI" Value="public:
 static Int128 Clamp(Int128 value, Int128 min, Int128 max) = System::Numerics::INumber<Int128>::Clamp;" />
<MemberType>Method</MemberType>
<Implements>
<InterfaceMember>M:System.Numerics.INumber`1.Clamp(`0,`0,`0)</InterfaceMember>
</Implements>
<AssemblyInfo>
<AssemblyName>System.Runtime</AssemblyName>
<AssemblyVersion>7.0.0.0</AssemblyVersion>
<AssemblyVersion>8.0.0.0</AssemblyVersion>
<AssemblyVersion>9.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Int128</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="value" Type="System.Int128" />
<Parameter Name="min" Type="System.Int128" />
<Parameter Name="max" Type="System.Int128" />
</Parameters>
<Docs>
<param name="value">The value to clamp.</param>
<param name="min">The inclusive minimum to which <paramref name="value" /> should clamp.</param>
<param name="max">The inclusive maximum to which <paramref name="value" /> should clamp.</param>
<summary>Clamps a value to an inclusive minimum and maximum value.</summary>
<returns>The result of clamping <paramref name="value" /> to the inclusive range of <paramref name="min" /> and <paramref name="max" />.</returns>
<remarks>To be added.</remarks>
<inheritdoc cref="M:System.Numerics.INumber`1.Clamp(`0,`0,`0)" />
</Docs>
</Member>
<Member MemberName="CompareTo">
<MemberSignature Language="C#" Value="public int CompareTo (Int128 value);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance int32 CompareTo(valuetype System.Int128 value) cil managed" />
<MemberSignature Language="DocId" Value="M:System.Int128.CompareTo(System.Int128)" />
<MemberSignature Language="VB.NET" Value="Public Function CompareTo (value As Int128) As Integer" />
<MemberSignature Language="F#" Value="abstract member CompareTo : Int128 -> int
override this.CompareTo : Int128 -> int" Usage="int128.CompareTo value" />
<MemberSignature Language="C++ CLI" Value="public:
 virtual int CompareTo(Int128 value);" />
<MemberType>Method</MemberType>
<Implements>
<InterfaceMember>M:System.IComparable`1.CompareTo(`0)</InterfaceMember>
</Implements>
<AssemblyInfo>
<AssemblyName>System.Runtime</AssemblyName>
<AssemblyVersion>7.0.0.0</AssemblyVersion>
<AssemblyVersion>8.0.0.0</AssemblyVersion>
<AssemblyVersion>9.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Int32</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="value" Type="System.Int128" />
</Parameters>
<Docs>
<param name="value">An object to compare with this instance.</param>
<summary>Compares the current instance with another object of the same type and returns an integer that indicates whether the current instance precedes, follows, or occurs in the same position in the sort order as the other object.</summary>
<returns>
<para>A value that indicates the relative order of the objects being compared. The return value has these meanings:</para>
<list type="table">
<listheader>
<term>Value</term>
<description>Meaning</description>
</listheader>
<item>
<term>Less than zero</term>
<description>This instance precedes <paramref name="value" /> in the sort order.</description>
</item>
<item>
<term>Zero</term>
<description>This instance occurs in the same position in the sort order as <paramref name="value" />.</description>
</item>
<item>
<term>Greater than zero</term>
<description>This instance follows <paramref name="value" /> in the sort order.</description>
</item>
</list>
</returns>
<remarks>To be added.</remarks>
<inheritdoc cref="M:System.IComparable`1.CompareTo(`0)" />
</Docs>
</Member>
<Member MemberName="CompareTo">
<MemberSignature Language="C#" Value="public int CompareTo (object? value);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance int32 CompareTo(object value) cil managed" />
<MemberSignature Language="DocId" Value="M:System.Int128.CompareTo(System.Object)" />
<MemberSignature Language="VB.NET" Value="Public Function CompareTo (value As Object) As Integer" />
<MemberSignature Language="F#" Value="abstract member CompareTo : obj -> int
override this.CompareTo : obj -> int" Usage="int128.CompareTo value" />
<MemberSignature Language="C++ CLI" Value="public:
 virtual int CompareTo(System::Object ^ value);" />
<MemberType>Method</MemberType>
<Implements>
<InterfaceMember>M:System.IComparable.CompareTo(System.Object)</InterfaceMember>
</Implements>
<AssemblyInfo>
<AssemblyName>System.Runtime</AssemblyName>
<AssemblyVersion>7.0.0.0</AssemblyVersion>
<AssemblyVersion>8.0.0.0</AssemblyVersion>
<AssemblyVersion>9.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute FrameworkAlternate="net-8.0;net-9.0">
<AttributeName Language="C#">[System.Runtime.CompilerServices.NullableContext(2)]</AttributeName>
<AttributeName Language="F#">[<System.Runtime.CompilerServices.NullableContext(2)>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Int32</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="value" Type="System.Object" />
</Parameters>
<Docs>
<param name="value">An object to compare with this instance.</param>
<summary>Compares the current instance with another object of the same type and returns an integer that indicates whether the current instance precedes, follows, or occurs in the same position in the sort order as the other object.</summary>
<returns>
<para>A value that indicates the relative order of the objects being compared. The return value has these meanings:</para>
<list type="table">
<listheader>
<term>Value</term>
<description>Meaning</description>
</listheader>
<item>
<term>Less than zero</term>
<description>This instance precedes <paramref name="value" /> in the sort order.</description>
</item>
<item>
<term>Zero</term>
<description>This instance occurs in the same position in the sort order as <paramref name="value" />.</description>
</item>
<item>
<term>Greater than zero</term>
<description>This instance follows <paramref name="value" /> in the sort order.</description>
</item>
</list>
</returns>
<remarks>To be added.</remarks>
<inheritdoc cref="M:System.IComparable.CompareTo(System.Object)" />
</Docs>
</Member>
<Member MemberName="CopySign">
<MemberSignature Language="C#" Value="public static Int128 CopySign (Int128 value, Int128 sign);" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig valuetype System.Int128 CopySign(valuetype System.Int128 value, valuetype System.Int128 sign) cil managed" />
<MemberSignature Language="DocId" Value="M:System.Int128.CopySign(System.Int128,System.Int128)" />
<MemberSignature Language="VB.NET" Value="Public Shared Function CopySign (value As Int128, sign As Int128) As Int128" />
<MemberSignature Language="F#" Value="static member CopySign : Int128 * Int128 -> Int128" Usage="System.Int128.CopySign (value, sign)" />
<MemberSignature Language="C++ CLI" Value="public:
 static Int128 CopySign(Int128 value, Int128 sign) = System::Numerics::INumber<Int128>::CopySign;" />
<MemberType>Method</MemberType>
<Implements>
<InterfaceMember>M:System.Numerics.INumber`1.CopySign(`0,`0)</InterfaceMember>
</Implements>
<AssemblyInfo>
<AssemblyName>System.Runtime</AssemblyName>
<AssemblyVersion>7.0.0.0</AssemblyVersion>
<AssemblyVersion>8.0.0.0</AssemblyVersion>
<AssemblyVersion>9.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Int128</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="value" Type="System.Int128" />
<Parameter Name="sign" Type="System.Int128" />
</Parameters>
<Docs>
<param name="value">The value whose magnitude is used in the result.</param>
<param name="sign">The value whose sign is used in the result.</param>
<summary>Copies the sign of a value to the sign of another value.</summary>
<returns>A value with the magnitude of <paramref name="value" /> and the sign of <paramref name="sign" />.</returns>
<remarks>To be added.</remarks>
<inheritdoc cref="M:System.Numerics.INumber`1.CopySign(`0,`0)" />
</Docs>
</Member>
<Member MemberName="CreateChecked<TOther>">
<MemberSignature Language="C#" Value="public static Int128 CreateChecked<TOther> (TOther value) where TOther : System.Numerics.INumberBase<TOther>;" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig valuetype System.Int128 CreateChecked<(class System.Numerics.INumberBase`1<!!TOther>) TOther>(!!TOther value) cil managed" />
<MemberSignature Language="DocId" Value="M:System.Int128.CreateChecked``1(``0)" />
<MemberSignature Language="VB.NET" Value="Public Shared Function CreateChecked(Of TOther As INumberBase(Of TOther)) (value As TOther) As Int128" />
<MemberSignature Language="F#" Value="static member CreateChecked : 'Other -> Int128 (requires 'Other :> System.Numerics.INumberBase<'Other>)" Usage="System.Int128.CreateChecked value" />
<MemberSignature Language="C++ CLI" Value="public:
generic <typename TOther>
 where TOther : System::Numerics::INumberBase<TOther> static Int128 CreateChecked(TOther value) = System::Numerics::INumberBase<Int128>::CreateChecked;" />
<MemberType>Method</MemberType>
<Implements>
<InterfaceMember>M:System.Numerics.INumberBase`1.CreateChecked``1(``0)</InterfaceMember>
</Implements>
<AssemblyInfo>
<AssemblyName>System.Runtime</AssemblyName>
<AssemblyVersion>7.0.0.0</AssemblyVersion>
<AssemblyVersion>8.0.0.0</AssemblyVersion>
<AssemblyVersion>9.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute FrameworkAlternate="net-8.0;net-9.0">
<AttributeName Language="C#">[System.Runtime.CompilerServices.NullableContext(1)]</AttributeName>
<AttributeName Language="F#">[<System.Runtime.CompilerServices.NullableContext(1)>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Int128</ReturnType>
</ReturnValue>
<TypeParameters>
<TypeParameter Name="TOther">
<Constraints>
<InterfaceName>System.Numerics.INumberBase<TOther></InterfaceName>
</Constraints>
<Attributes>
<Attribute FrameworkAlternate="net-8.0;net-9.0">
<AttributeName Language="C#">[System.Runtime.CompilerServices.Nullable(0)]</AttributeName>
<AttributeName Language="F#">[<System.Runtime.CompilerServices.Nullable(0)>]</AttributeName>
</Attribute>
</Attributes>
</TypeParameter>
</TypeParameters>
<Parameters>
<Parameter Name="value" Type="TOther" />
</Parameters>
<Docs>
<typeparam name="TOther">The type of <paramref name="value" />.</typeparam>
<param name="value">The value that's used to create the instance of <typeparamref name="TSelf" />.</param>
<summary>Creates an instance of the current type from a value, throwing an overflow exception for any values that fall outside the representable range of the current type.</summary>
<returns>An instance of <typeparamref name="TSelf" /> created from <paramref name="value" />.</returns>
<remarks>To be added.</remarks>
<inheritdoc cref="M:System.Numerics.INumberBase`1.CreateChecked``1(``0)" />
</Docs>
</Member>
<Member MemberName="CreateSaturating<TOther>">
<MemberSignature Language="C#" Value="public static Int128 CreateSaturating<TOther> (TOther value) where TOther : System.Numerics.INumberBase<TOther>;" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig valuetype System.Int128 CreateSaturating<(class System.Numerics.INumberBase`1<!!TOther>) TOther>(!!TOther value) cil managed" />
<MemberSignature Language="DocId" Value="M:System.Int128.CreateSaturating``1(``0)" />
<MemberSignature Language="VB.NET" Value="Public Shared Function CreateSaturating(Of TOther As INumberBase(Of TOther)) (value As TOther) As Int128" />
<MemberSignature Language="F#" Value="static member CreateSaturating : 'Other -> Int128 (requires 'Other :> System.Numerics.INumberBase<'Other>)" Usage="System.Int128.CreateSaturating value" />
<MemberSignature Language="C++ CLI" Value="public:
generic <typename TOther>
 where TOther : System::Numerics::INumberBase<TOther> static Int128 CreateSaturating(TOther value) = System::Numerics::INumberBase<Int128>::CreateSaturating;" />
<MemberType>Method</MemberType>
<Implements>
<InterfaceMember>M:System.Numerics.INumberBase`1.CreateSaturating``1(``0)</InterfaceMember>
</Implements>
<AssemblyInfo>
<AssemblyName>System.Runtime</AssemblyName>
<AssemblyVersion>7.0.0.0</AssemblyVersion>
<AssemblyVersion>8.0.0.0</AssemblyVersion>
<AssemblyVersion>9.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute FrameworkAlternate="net-8.0;net-9.0">
<AttributeName Language="C#">[System.Runtime.CompilerServices.NullableContext(1)]</AttributeName>
<AttributeName Language="F#">[<System.Runtime.CompilerServices.NullableContext(1)>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Int128</ReturnType>
</ReturnValue>
<TypeParameters>
<TypeParameter Name="TOther">
<Constraints>
<InterfaceName>System.Numerics.INumberBase<TOther></InterfaceName>
</Constraints>
<Attributes>
<Attribute FrameworkAlternate="net-8.0;net-9.0">
<AttributeName Language="C#">[System.Runtime.CompilerServices.Nullable(0)]</AttributeName>
<AttributeName Language="F#">[<System.Runtime.CompilerServices.Nullable(0)>]</AttributeName>
</Attribute>
</Attributes>
</TypeParameter>
</TypeParameters>
<Parameters>
<Parameter Name="value" Type="TOther" />
</Parameters>
<Docs>
<typeparam name="TOther">The type of <paramref name="value" />.</typeparam>
<param name="value">The value which is used to create the instance of <typeparamref name="TSelf" />.</param>
<summary>Creates an instance of the current type from a value, saturating any values that fall outside the representable range of the current type.</summary>
<returns>An instance of <typeparamref name="TSelf" /> created from <paramref name="value" />, saturating if <paramref name="value" /> falls outside the representable range of <typeparamref name="TSelf" />.</returns>
<remarks>To be added.</remarks>
<inheritdoc cref="M:System.Numerics.INumberBase`1.CreateSaturating``1(``0)" />
</Docs>
</Member>
<Member MemberName="CreateTruncating<TOther>">
<MemberSignature Language="C#" Value="public static Int128 CreateTruncating<TOther> (TOther value) where TOther : System.Numerics.INumberBase<TOther>;" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig valuetype System.Int128 CreateTruncating<(class System.Numerics.INumberBase`1<!!TOther>) TOther>(!!TOther value) cil managed" />
<MemberSignature Language="DocId" Value="M:System.Int128.CreateTruncating``1(``0)" />
<MemberSignature Language="VB.NET" Value="Public Shared Function CreateTruncating(Of TOther As INumberBase(Of TOther)) (value As TOther) As Int128" />
<MemberSignature Language="F#" Value="static member CreateTruncating : 'Other -> Int128 (requires 'Other :> System.Numerics.INumberBase<'Other>)" Usage="System.Int128.CreateTruncating value" />
<MemberSignature Language="C++ CLI" Value="public:
generic <typename TOther>
 where TOther : System::Numerics::INumberBase<TOther> static Int128 CreateTruncating(TOther value) = System::Numerics::INumberBase<Int128>::CreateTruncating;" />
<MemberType>Method</MemberType>
<Implements>
<InterfaceMember>M:System.Numerics.INumberBase`1.CreateTruncating``1(``0)</InterfaceMember>
</Implements>
<AssemblyInfo>
<AssemblyName>System.Runtime</AssemblyName>
<AssemblyVersion>7.0.0.0</AssemblyVersion>
<AssemblyVersion>8.0.0.0</AssemblyVersion>
<AssemblyVersion>9.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute FrameworkAlternate="net-8.0;net-9.0">
<AttributeName Language="C#">[System.Runtime.CompilerServices.NullableContext(1)]</AttributeName>
<AttributeName Language="F#">[<System.Runtime.CompilerServices.NullableContext(1)>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Int128</ReturnType>
</ReturnValue>
<TypeParameters>
<TypeParameter Name="TOther">
<Constraints>
<InterfaceName>System.Numerics.INumberBase<TOther></InterfaceName>
</Constraints>
<Attributes>
<Attribute FrameworkAlternate="net-8.0;net-9.0">
<AttributeName Language="C#">[System.Runtime.CompilerServices.Nullable(0)]</AttributeName>
<AttributeName Language="F#">[<System.Runtime.CompilerServices.Nullable(0)>]</AttributeName>
</Attribute>
</Attributes>
</TypeParameter>
</TypeParameters>
<Parameters>
<Parameter Name="value" Type="TOther" />
</Parameters>
<Docs>
<typeparam name="TOther">The type of <paramref name="value" />.</typeparam>
<param name="value">The value which is used to create the instance of <typeparamref name="TSelf" />.</param>
<summary>Creates an instance of the current type from a value, truncating any values that fall outside the representable range of the current type.</summary>
<returns>An instance of <typeparamref name="TSelf" /> created from <paramref name="value" />, truncating if <paramref name="value" /> falls outside the representable range of <typeparamref name="TSelf" />.</returns>
<remarks>To be added.</remarks>
<inheritdoc cref="M:System.Numerics.INumberBase`1.CreateTruncating``1(``0)" />
</Docs>
</Member>
<Member MemberName="DivRem">
<MemberSignature Language="C#" Value="public static (Int128 Quotient, Int128 Remainder) DivRem (Int128 left, Int128 right);" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig valuetype System.ValueTuple`2<valuetype System.Int128, valuetype System.Int128> DivRem(valuetype System.Int128 left, valuetype System.Int128 right) cil managed" />
<MemberSignature Language="DocId" Value="M:System.Int128.DivRem(System.Int128,System.Int128)" />
<MemberSignature Language="VB.NET" Value="Public Shared Function DivRem (left As Int128, right As Int128) As ValueTuple(Of Int128, Int128)" />
<MemberSignature Language="F#" Value="static member DivRem : Int128 * Int128 -> ValueTuple<Int128, Int128>" Usage="System.Int128.DivRem (left, right)" />
<MemberSignature Language="C++ CLI" Value="public:
 static ValueTuple<Int128, Int128> DivRem(Int128 left, Int128 right) = System::Numerics::IBinaryInteger<Int128>::DivRem;" />
<MemberType>Method</MemberType>
<Implements>
<InterfaceMember>M:System.Numerics.IBinaryInteger`1.DivRem(`0,`0)</InterfaceMember>
</Implements>
<AssemblyInfo>
<AssemblyName>System.Runtime</AssemblyName>
<AssemblyVersion>7.0.0.0</AssemblyVersion>
<AssemblyVersion>8.0.0.0</AssemblyVersion>
<AssemblyVersion>9.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.ValueTuple<System.Int128,System.Int128></ReturnType>
<Attributes>
<Attribute FrameworkAlternate="net-7.0">
<AttributeName Language="C#">[System.Runtime.CompilerServices.TupleElementNames(new System.String[] { "Quotient", "Remainder" })]</AttributeName>
<AttributeName Language="F#">[<System.Runtime.CompilerServices.TupleElementNames(new System.String[] { "Quotient", "Remainder" })>]</AttributeName>
</Attribute>
</Attributes>
</ReturnValue>
<Parameters>
<Parameter Name="left" Type="System.Int128" />
<Parameter Name="right" Type="System.Int128" />
</Parameters>
<Docs>
<param name="left">The value which <paramref name="right" /> divides.</param>
<param name="right">The value which divides <paramref name="left" />.</param>
<summary>Computes the quotient and remainder of two values.</summary>
<returns>The quotient and remainder of <paramref name="left" /> divided-by <paramref name="right" />.</returns>
<remarks>To be added.</remarks>
<inheritdoc cref="M:System.Numerics.IBinaryInteger`1.DivRem(`0,`0)" />
</Docs>
</Member>
<Member MemberName="Equals">
<MemberSignature Language="C#" Value="public bool Equals (Int128 other);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance bool Equals(valuetype System.Int128 other) cil managed" />
<MemberSignature Language="DocId" Value="M:System.Int128.Equals(System.Int128)" />
<MemberSignature Language="VB.NET" Value="Public Function Equals (other As Int128) As Boolean" />
<MemberSignature Language="F#" Value="override this.Equals : Int128 -> bool" Usage="int128.Equals other" />
<MemberSignature Language="C++ CLI" Value="public:
 virtual bool Equals(Int128 other);" />
<MemberType>Method</MemberType>
<Implements>
<InterfaceMember>M:System.IEquatable`1.Equals(`0)</InterfaceMember>
</Implements>
<AssemblyInfo>
<AssemblyName>System.Runtime</AssemblyName>
<AssemblyVersion>7.0.0.0</AssemblyVersion>
<AssemblyVersion>8.0.0.0</AssemblyVersion>
<AssemblyVersion>9.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Boolean</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="other" Type="System.Int128" />
</Parameters>
<Docs>
<param name="other">An object to compare with this object.</param>
<summary>Indicates whether the current object is equal to another object of the same type.</summary>
<returns>
<see langword="true" /> if the current object is equal to the <paramref name="other" /> parameter; otherwise, <see langword="false" />.</returns>
<remarks>To be added.</remarks>
<inheritdoc cref="M:System.IEquatable`1.Equals(`0)" />
</Docs>
</Member>
<Member MemberName="Equals">
<MemberSignature Language="C#" Value="public override bool Equals (object? obj);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig virtual instance bool Equals(object obj) cil managed" />
<MemberSignature Language="DocId" Value="M:System.Int128.Equals(System.Object)" />
<MemberSignature Language="VB.NET" Value="Public Overrides Function Equals (obj As Object) As Boolean" />
<MemberSignature Language="F#" Value="override this.Equals : obj -> bool" Usage="int128.Equals obj" />
<MemberSignature Language="C++ CLI" Value="public:
 override bool Equals(System::Object ^ obj);" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>System.Runtime</AssemblyName>
<AssemblyVersion>7.0.0.0</AssemblyVersion>
<AssemblyVersion>8.0.0.0</AssemblyVersion>
<AssemblyVersion>9.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute FrameworkAlternate="net-8.0;net-9.0">
<AttributeName Language="C#">[System.Runtime.CompilerServices.NullableContext(2)]</AttributeName>
<AttributeName Language="F#">[<System.Runtime.CompilerServices.NullableContext(2)>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Boolean</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="obj" Type="System.Object">
<Attributes>
<Attribute>
<AttributeName Language="C#">[System.Diagnostics.CodeAnalysis.NotNullWhen(true)]</AttributeName>
<AttributeName Language="F#">[<System.Diagnostics.CodeAnalysis.NotNullWhen(true)>]</AttributeName>
</Attribute>
</Attributes>
</Parameter>
</Parameters>
<Docs>
<param name="obj">The object to compare with the current object.</param>
<summary>Determines whether the specified object is equal to the current object.</summary>
<returns>
<see langword="true" /> if the specified object is equal to the current object; otherwise, <see langword="false" />.</returns>
<remarks>To be added.</remarks>
<inheritdoc cref="M:System.Object.Equals(System.Object)" />
</Docs>
</Member>
<Member MemberName="GetHashCode">
<MemberSignature Language="C#" Value="public override int GetHashCode ();" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig virtual instance int32 GetHashCode() cil managed" />
<MemberSignature Language="DocId" Value="M:System.Int128.GetHashCode" />
<MemberSignature Language="VB.NET" Value="Public Overrides Function GetHashCode () As Integer" />
<MemberSignature Language="F#" Value="override this.GetHashCode : unit -> int" Usage="int128.GetHashCode " />
<MemberSignature Language="C++ CLI" Value="public:
 override int GetHashCode();" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>System.Runtime</AssemblyName>
<AssemblyVersion>7.0.0.0</AssemblyVersion>
<AssemblyVersion>8.0.0.0</AssemblyVersion>
<AssemblyVersion>9.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Int32</ReturnType>
</ReturnValue>
<Parameters />
<Docs>
<summary>Serves as the default hash function.</summary>
<returns>A hash code for the current object.</returns>
<remarks>To be added.</remarks>
<inheritdoc cref="M:System.Object.GetHashCode" />
</Docs>
</Member>
<Member MemberName="IsEvenInteger">
<MemberSignature Language="C#" Value="public static bool IsEvenInteger (Int128 value);" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig bool IsEvenInteger(valuetype System.Int128 value) cil managed" />
<MemberSignature Language="DocId" Value="M:System.Int128.IsEvenInteger(System.Int128)" />
<MemberSignature Language="VB.NET" Value="Public Shared Function IsEvenInteger (value As Int128) As Boolean" />
<MemberSignature Language="F#" Value="static member IsEvenInteger : Int128 -> bool" Usage="System.Int128.IsEvenInteger value" />
<MemberSignature Language="C++ CLI" Value="public:
 static bool IsEvenInteger(Int128 value) = System::Numerics::INumberBase<Int128>::IsEvenInteger;" />
<MemberType>Method</MemberType>
<Implements>
<InterfaceMember>M:System.Numerics.INumberBase`1.IsEvenInteger(`0)</InterfaceMember>
</Implements>
<AssemblyInfo>
<AssemblyName>System.Runtime</AssemblyName>
<AssemblyVersion>7.0.0.0</AssemblyVersion>
<AssemblyVersion>8.0.0.0</AssemblyVersion>
<AssemblyVersion>9.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Boolean</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="value" Type="System.Int128" />
</Parameters>
<Docs>
<param name="value">The value to be checked.</param>
<summary>Determines if a value represents an even integral number.</summary>
<returns>
<see langword="true" /> if <paramref name="value" /> is an even integer; otherwise, <see langword="false" />.</returns>
<remarks>
<format type="text/markdown"><![CDATA[
## Remarks
This method correctly handles floating-point values and so `2.0` will return `true` while `2.2` will return `false`.
A return value of `false` does not imply that <xref:System.Numerics.INumberBase%601.IsOddInteger(%600)> will return `true`. A number with a fractional portion, for example, `3.3`, is not even or odd.
]]></format>
</remarks>
<inheritdoc cref="M:System.Numerics.INumberBase`1.IsEvenInteger(`0)" />
</Docs>
</Member>
<Member MemberName="IsNegative">
<MemberSignature Language="C#" Value="public static bool IsNegative (Int128 value);" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig bool IsNegative(valuetype System.Int128 value) cil managed" />
<MemberSignature Language="DocId" Value="M:System.Int128.IsNegative(System.Int128)" />
<MemberSignature Language="VB.NET" Value="Public Shared Function IsNegative (value As Int128) As Boolean" />
<MemberSignature Language="F#" Value="static member IsNegative : Int128 -> bool" Usage="System.Int128.IsNegative value" />
<MemberSignature Language="C++ CLI" Value="public:
 static bool IsNegative(Int128 value) = System::Numerics::INumberBase<Int128>::IsNegative;" />
<MemberType>Method</MemberType>
<Implements>
<InterfaceMember>M:System.Numerics.INumberBase`1.IsNegative(`0)</InterfaceMember>
</Implements>
<AssemblyInfo>
<AssemblyName>System.Runtime</AssemblyName>
<AssemblyVersion>7.0.0.0</AssemblyVersion>
<AssemblyVersion>8.0.0.0</AssemblyVersion>
<AssemblyVersion>9.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Boolean</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="value" Type="System.Int128" />
</Parameters>
<Docs>
<param name="value">The value to be checked.</param>
<summary>Determines if a value is negative.</summary>
<returns>
<see langword="true" /> if <paramref name="value" /> is negative; otherwise, <see langword="false" />.</returns>
<remarks>
<format type="text/markdown"><![CDATA[
## Remarks
A return value of `false` does not imply that <xref:System.Numerics.INumberBase%601.IsPositive(%600)> will return `true`. A complex number, `a + bi` for non-zero `b`, is not positive or negative
]]></format>
</remarks>
<inheritdoc cref="M:System.Numerics.INumberBase`1.IsNegative(`0)" />
</Docs>
</Member>
<Member MemberName="IsOddInteger">
<MemberSignature Language="C#" Value="public static bool IsOddInteger (Int128 value);" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig bool IsOddInteger(valuetype System.Int128 value) cil managed" />
<MemberSignature Language="DocId" Value="M:System.Int128.IsOddInteger(System.Int128)" />
<MemberSignature Language="VB.NET" Value="Public Shared Function IsOddInteger (value As Int128) As Boolean" />
<MemberSignature Language="F#" Value="static member IsOddInteger : Int128 -> bool" Usage="System.Int128.IsOddInteger value" />
<MemberSignature Language="C++ CLI" Value="public:
 static bool IsOddInteger(Int128 value) = System::Numerics::INumberBase<Int128>::IsOddInteger;" />
<MemberType>Method</MemberType>
<Implements>
<InterfaceMember>M:System.Numerics.INumberBase`1.IsOddInteger(`0)</InterfaceMember>
</Implements>
<AssemblyInfo>
<AssemblyName>System.Runtime</AssemblyName>
<AssemblyVersion>7.0.0.0</AssemblyVersion>
<AssemblyVersion>8.0.0.0</AssemblyVersion>
<AssemblyVersion>9.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Boolean</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="value" Type="System.Int128" />
</Parameters>
<Docs>
<param name="value">The value to be checked.</param>
<summary>Determines if a value represents an odd integral number.</summary>
<returns>
<see langword="true" /> if <paramref name="value" /> is an odd integer; otherwise, <see langword="false" />.</returns>
<remarks>
<format type="text/markdown"><![CDATA[
## Remarks
This method correctly handles floating-point values and so `3.0` will return `true` while `3.3` will return `false`.
A return value of `false` does not imply that <xref:System.Numerics.INumberBase%601.IsEvenInteger(%600)> will return `true`. A number with a fractional portion, for example, `3.3`, is not even or odd.
]]></format>
</remarks>
<inheritdoc cref="M:System.Numerics.INumberBase`1.IsOddInteger(`0)" />
</Docs>
</Member>
<Member MemberName="IsPositive">
<MemberSignature Language="C#" Value="public static bool IsPositive (Int128 value);" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig bool IsPositive(valuetype System.Int128 value) cil managed" />
<MemberSignature Language="DocId" Value="M:System.Int128.IsPositive(System.Int128)" />
<MemberSignature Language="VB.NET" Value="Public Shared Function IsPositive (value As Int128) As Boolean" />
<MemberSignature Language="F#" Value="static member IsPositive : Int128 -> bool" Usage="System.Int128.IsPositive value" />
<MemberSignature Language="C++ CLI" Value="public:
 static bool IsPositive(Int128 value) = System::Numerics::INumberBase<Int128>::IsPositive;" />
<MemberType>Method</MemberType>
<Implements>
<InterfaceMember>M:System.Numerics.INumberBase`1.IsPositive(`0)</InterfaceMember>
</Implements>
<AssemblyInfo>
<AssemblyName>System.Runtime</AssemblyName>
<AssemblyVersion>7.0.0.0</AssemblyVersion>
<AssemblyVersion>8.0.0.0</AssemblyVersion>
<AssemblyVersion>9.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Boolean</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="value" Type="System.Int128" />
</Parameters>
<Docs>
<param name="value">The value to be checked.</param>
<summary>Determines if a value is positive.</summary>
<returns>
<see langword="true" /> if <paramref name="value" /> is positive; otherwise, <see langword="false" />.</returns>
<remarks>
<format type="text/markdown"><![CDATA[
## Remarks
A return value of `false` does not imply that <xref:System.Numerics.INumberBase%601.IsNegative(%600)> will return `true`. A complex number, `a + bi` for non-zero `b`, is not positive or negative
]]></format>
</remarks>
<inheritdoc cref="M:System.Numerics.INumberBase`1.IsPositive(`0)" />
</Docs>
</Member>
<Member MemberName="IsPow2">
<MemberSignature Language="C#" Value="public static bool IsPow2 (Int128 value);" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig bool IsPow2(valuetype System.Int128 value) cil managed" />
<MemberSignature Language="DocId" Value="M:System.Int128.IsPow2(System.Int128)" />
<MemberSignature Language="VB.NET" Value="Public Shared Function IsPow2 (value As Int128) As Boolean" />
<MemberSignature Language="F#" Value="static member IsPow2 : Int128 -> bool" Usage="System.Int128.IsPow2 value" />
<MemberSignature Language="C++ CLI" Value="public:
 static bool IsPow2(Int128 value) = System::Numerics::IBinaryNumber<Int128>::IsPow2;" />
<MemberType>Method</MemberType>
<Implements>
<InterfaceMember>M:System.Numerics.IBinaryNumber`1.IsPow2(`0)</InterfaceMember>
</Implements>
<AssemblyInfo>
<AssemblyName>System.Runtime</AssemblyName>
<AssemblyVersion>7.0.0.0</AssemblyVersion>
<AssemblyVersion>8.0.0.0</AssemblyVersion>
<AssemblyVersion>9.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Boolean</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="value" Type="System.Int128" />
</Parameters>
<Docs>
<param name="value">The value to be checked.</param>
<summary>Determines if a value is a power of two.</summary>
<returns>
<see langword="true" /> if <paramref name="value" /> is a power of two; otherwise, <see langword="false" />.</returns>
<remarks>To be added.</remarks>
<inheritdoc cref="M:System.Numerics.IBinaryNumber`1.IsPow2(`0)" />
</Docs>
</Member>
<Member MemberName="LeadingZeroCount">
<MemberSignature Language="C#" Value="public static Int128 LeadingZeroCount (Int128 value);" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig valuetype System.Int128 LeadingZeroCount(valuetype System.Int128 value) cil managed" />
<MemberSignature Language="DocId" Value="M:System.Int128.LeadingZeroCount(System.Int128)" />
<MemberSignature Language="VB.NET" Value="Public Shared Function LeadingZeroCount (value As Int128) As Int128" />
<MemberSignature Language="F#" Value="static member LeadingZeroCount : Int128 -> Int128" Usage="System.Int128.LeadingZeroCount value" />
<MemberSignature Language="C++ CLI" Value="public:
 static Int128 LeadingZeroCount(Int128 value) = System::Numerics::IBinaryInteger<Int128>::LeadingZeroCount;" />
<MemberType>Method</MemberType>
<Implements>
<InterfaceMember>M:System.Numerics.IBinaryInteger`1.LeadingZeroCount(`0)</InterfaceMember>
</Implements>
<AssemblyInfo>
<AssemblyName>System.Runtime</AssemblyName>
<AssemblyVersion>7.0.0.0</AssemblyVersion>
<AssemblyVersion>8.0.0.0</AssemblyVersion>
<AssemblyVersion>9.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Int128</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="value" Type="System.Int128" />
</Parameters>
<Docs>
<param name="value">The value whose leading zeroes are to be counted.</param>
<summary>Computes the number of leading zeros in a value.</summary>
<returns>The number of leading zeros in <paramref name="value" />.</returns>
<remarks>To be added.</remarks>
<inheritdoc cref="M:System.Numerics.IBinaryInteger`1.LeadingZeroCount(`0)" />
</Docs>
</Member>
<Member MemberName="Log2">
<MemberSignature Language="C#" Value="public static Int128 Log2 (Int128 value);" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig valuetype System.Int128 Log2(valuetype System.Int128 value) cil managed" />
<MemberSignature Language="DocId" Value="M:System.Int128.Log2(System.Int128)" />
<MemberSignature Language="VB.NET" Value="Public Shared Function Log2 (value As Int128) As Int128" />
<MemberSignature Language="F#" Value="static member Log2 : Int128 -> Int128" Usage="System.Int128.Log2 value" />
<MemberSignature Language="C++ CLI" Value="public:
 static Int128 Log2(Int128 value) = System::Numerics::IBinaryNumber<Int128>::Log2;" />
<MemberType>Method</MemberType>
<Implements>
<InterfaceMember>M:System.Numerics.IBinaryNumber`1.Log2(`0)</InterfaceMember>
</Implements>
<AssemblyInfo>
<AssemblyName>System.Runtime</AssemblyName>
<AssemblyVersion>7.0.0.0</AssemblyVersion>
<AssemblyVersion>8.0.0.0</AssemblyVersion>
<AssemblyVersion>9.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Int128</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="value" Type="System.Int128" />
</Parameters>
<Docs>
<param name="value">The value whose log2 is to be computed.</param>
<summary>Computes the log2 of a value.</summary>
<returns>The log2 of <paramref name="value" />.</returns>
<remarks>To be added.</remarks>
<inheritdoc cref="M:System.Numerics.IBinaryNumber`1.Log2(`0)" />
</Docs>
</Member>
<Member MemberName="Max">
<MemberSignature Language="C#" Value="public static Int128 Max (Int128 x, Int128 y);" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig valuetype System.Int128 Max(valuetype System.Int128 x, valuetype System.Int128 y) cil managed" />
<MemberSignature Language="DocId" Value="M:System.Int128.Max(System.Int128,System.Int128)" />
<MemberSignature Language="VB.NET" Value="Public Shared Function Max (x As Int128, y As Int128) As Int128" />
<MemberSignature Language="F#" Value="static member Max : Int128 * Int128 -> Int128" Usage="System.Int128.Max (x, y)" />
<MemberSignature Language="C++ CLI" Value="public:
 static Int128 Max(Int128 x, Int128 y) = System::Numerics::INumber<Int128>::Max;" />
<MemberType>Method</MemberType>
<Implements>
<InterfaceMember>M:System.Numerics.INumber`1.Max(`0,`0)</InterfaceMember>
</Implements>
<AssemblyInfo>
<AssemblyName>System.Runtime</AssemblyName>
<AssemblyVersion>7.0.0.0</AssemblyVersion>
<AssemblyVersion>8.0.0.0</AssemblyVersion>
<AssemblyVersion>9.0.0.0</AssemblyVersion>