-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Expand file tree
/
Copy pathIBinaryInteger`1.xml
More file actions
1015 lines (1015 loc) · 86.4 KB
/
IBinaryInteger`1.xml
File metadata and controls
1015 lines (1015 loc) · 86.4 KB
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="IBinaryInteger<TSelf>" FullName="System.Numerics.IBinaryInteger<TSelf>">
<TypeSignature Language="C#" Value="public interface IBinaryInteger<TSelf> : IComparable<TSelf>, IEquatable<TSelf>, IParsable<TSelf>, ISpanParsable<TSelf>, IUtf8SpanParsable<TSelf>, System.Numerics.IAdditionOperators<TSelf,TSelf,TSelf>, System.Numerics.IAdditiveIdentity<TSelf,TSelf>, System.Numerics.IBinaryNumber<TSelf>, System.Numerics.IBitwiseOperators<TSelf,TSelf,TSelf>, System.Numerics.IComparisonOperators<TSelf,TSelf,bool>, System.Numerics.IDecrementOperators<TSelf>, System.Numerics.IDivisionOperators<TSelf,TSelf,TSelf>, System.Numerics.IEqualityOperators<TSelf,TSelf,bool>, System.Numerics.IIncrementOperators<TSelf>, System.Numerics.IModulusOperators<TSelf,TSelf,TSelf>, System.Numerics.IMultiplicativeIdentity<TSelf,TSelf>, System.Numerics.IMultiplyOperators<TSelf,TSelf,TSelf>, System.Numerics.INumber<TSelf>, System.Numerics.INumberBase<TSelf>, System.Numerics.IShiftOperators<TSelf,int,TSelf>, System.Numerics.ISubtractionOperators<TSelf,TSelf,TSelf>, System.Numerics.IUnaryNegationOperators<TSelf,TSelf>, System.Numerics.IUnaryPlusOperators<TSelf,TSelf> where TSelf : IBinaryInteger<TSelf>" FrameworkAlternate="net-10.0;net-11.0;net-8.0;net-9.0" />
<TypeSignature Language="ILAsm" Value=".class public interface auto ansi abstract beforefieldinit IBinaryInteger`1<(class System.Numerics.IBinaryInteger`1<!TSelf>) TSelf> implements class System.IComparable, class System.IComparable`1<!TSelf>, class System.IEquatable`1<!TSelf>, class System.IFormattable, class System.IParsable`1<!TSelf>, class System.ISpanFormattable, class System.ISpanParsable`1<!TSelf>, class System.IUtf8SpanFormattable, class System.IUtf8SpanParsable`1<!TSelf>, class System.Numerics.IAdditionOperators`3<!TSelf, !TSelf, !TSelf>, class System.Numerics.IAdditiveIdentity`2<!TSelf, !TSelf>, class System.Numerics.IBinaryNumber`1<!TSelf>, class System.Numerics.IBitwiseOperators`3<!TSelf, !TSelf, !TSelf>, class System.Numerics.IComparisonOperators`3<!TSelf, !TSelf, bool>, class System.Numerics.IDecrementOperators`1<!TSelf>, class System.Numerics.IDivisionOperators`3<!TSelf, !TSelf, !TSelf>, class System.Numerics.IEqualityOperators`3<!TSelf, !TSelf, bool>, class System.Numerics.IIncrementOperators`1<!TSelf>, class System.Numerics.IModulusOperators`3<!TSelf, !TSelf, !TSelf>, class System.Numerics.IMultiplicativeIdentity`2<!TSelf, !TSelf>, class System.Numerics.IMultiplyOperators`3<!TSelf, !TSelf, !TSelf>, class System.Numerics.INumber`1<!TSelf>, class System.Numerics.INumberBase`1<!TSelf>, class System.Numerics.IShiftOperators`3<!TSelf, int32, !TSelf>, class System.Numerics.ISubtractionOperators`3<!TSelf, !TSelf, !TSelf>, class System.Numerics.IUnaryNegationOperators`2<!TSelf, !TSelf>, class System.Numerics.IUnaryPlusOperators`2<!TSelf, !TSelf>" FrameworkAlternate="net-10.0;net-11.0;net-8.0;net-9.0" />
<TypeSignature Language="DocId" Value="T:System.Numerics.IBinaryInteger`1" />
<TypeSignature Language="VB.NET" Value="Public Interface IBinaryInteger(Of TSelf)
Implements IAdditionOperators(Of TSelf, TSelf, TSelf), IAdditiveIdentity(Of TSelf, TSelf), IBinaryNumber(Of TSelf), IBitwiseOperators(Of TSelf, TSelf, TSelf), IComparable(Of TSelf), IComparisonOperators(Of TSelf, TSelf, Boolean), IDecrementOperators(Of TSelf), IDivisionOperators(Of TSelf, TSelf, TSelf), IEqualityOperators(Of TSelf, TSelf, Boolean), IEquatable(Of TSelf), IIncrementOperators(Of TSelf), IModulusOperators(Of TSelf, TSelf, TSelf), IMultiplicativeIdentity(Of TSelf, TSelf), IMultiplyOperators(Of TSelf, TSelf, TSelf), INumber(Of TSelf), INumberBase(Of TSelf), IParsable(Of TSelf), IShiftOperators(Of TSelf, Integer, TSelf), ISpanParsable(Of TSelf), ISubtractionOperators(Of TSelf, TSelf, TSelf), IUnaryNegationOperators(Of TSelf, TSelf), IUnaryPlusOperators(Of TSelf, TSelf), IUtf8SpanParsable(Of TSelf)" FrameworkAlternate="net-10.0;net-11.0;net-8.0;net-9.0" />
<TypeSignature Language="F#" Value="type IBinaryInteger<'Self (requires 'Self :> IBinaryInteger<'Self>)> = interface
 interface IComparable
 interface IComparable<'Self (requires 'Self :> IBinaryInteger<'Self>)>
 interface IEquatable<'Self (requires 'Self :> IBinaryInteger<'Self>)>
 interface IFormattable
 interface IParsable<'Self (requires 'Self :> IBinaryInteger<'Self>)>
 interface ISpanFormattable
 interface ISpanParsable<'Self (requires 'Self :> IBinaryInteger<'Self>)>
 interface IAdditionOperators<'Self, 'Self, 'Self (requires 'Self :> IBinaryInteger<'Self> and 'Self :> IBinaryInteger<'Self> and 'Self :> IBinaryInteger<'Self>)>
 interface IAdditiveIdentity<'Self, 'Self (requires 'Self :> IBinaryInteger<'Self> and 'Self :> IBinaryInteger<'Self>)>
 interface IBinaryNumber<'Self (requires 'Self :> IBinaryInteger<'Self>)>
 interface IBitwiseOperators<'Self, 'Self, 'Self (requires 'Self :> IBinaryInteger<'Self> and 'Self :> IBinaryInteger<'Self> and 'Self :> IBinaryInteger<'Self>)>
 interface IComparisonOperators<'Self, 'Self, bool (requires 'Self :> IBinaryInteger<'Self> and 'Self :> IBinaryInteger<'Self>)>
 interface IEqualityOperators<'Self, 'Self, bool (requires 'Self :> IBinaryInteger<'Self> and 'Self :> IBinaryInteger<'Self>)>
 interface IDecrementOperators<'Self (requires 'Self :> IBinaryInteger<'Self>)>
 interface IDivisionOperators<'Self, 'Self, 'Self (requires 'Self :> IBinaryInteger<'Self> and 'Self :> IBinaryInteger<'Self> and 'Self :> IBinaryInteger<'Self>)>
 interface IIncrementOperators<'Self (requires 'Self :> IBinaryInteger<'Self>)>
 interface IModulusOperators<'Self, 'Self, 'Self (requires 'Self :> IBinaryInteger<'Self> and 'Self :> IBinaryInteger<'Self> and 'Self :> IBinaryInteger<'Self>)>
 interface IMultiplicativeIdentity<'Self, 'Self (requires 'Self :> IBinaryInteger<'Self> and 'Self :> IBinaryInteger<'Self>)>
 interface IMultiplyOperators<'Self, 'Self, 'Self (requires 'Self :> IBinaryInteger<'Self> and 'Self :> IBinaryInteger<'Self> and 'Self :> IBinaryInteger<'Self>)>
 interface INumber<'Self (requires 'Self :> IBinaryInteger<'Self>)>
 interface INumberBase<'Self (requires 'Self :> IBinaryInteger<'Self>)>
 interface IUtf8SpanFormattable
 interface IUtf8SpanParsable<'Self (requires 'Self :> IBinaryInteger<'Self>)>
 interface ISubtractionOperators<'Self, 'Self, 'Self (requires 'Self :> IBinaryInteger<'Self> and 'Self :> IBinaryInteger<'Self> and 'Self :> IBinaryInteger<'Self>)>
 interface IUnaryNegationOperators<'Self, 'Self (requires 'Self :> IBinaryInteger<'Self> and 'Self :> IBinaryInteger<'Self>)>
 interface IUnaryPlusOperators<'Self, 'Self (requires 'Self :> IBinaryInteger<'Self> and 'Self :> IBinaryInteger<'Self>)>
 interface IShiftOperators<'Self, int, 'Self (requires 'Self :> IBinaryInteger<'Self> and 'Self :> IBinaryInteger<'Self>)>" FrameworkAlternate="net-10.0;net-11.0;net-9.0" />
<TypeSignature Language="C++ CLI" Value="generic <typename TSelf>
 where TSelf : IBinaryInteger<TSelf>public interface class IBinaryInteger : IComparable<TSelf>, IEquatable<TSelf>, IParsable<TSelf>, ISpanParsable<TSelf>, IUtf8SpanParsable<TSelf>, System::Numerics::IAdditionOperators<TSelf, TSelf, TSelf>, System::Numerics::IAdditiveIdentity<TSelf, TSelf>, System::Numerics::IBinaryNumber<TSelf>, System::Numerics::IBitwiseOperators<TSelf, TSelf, TSelf>, System::Numerics::IComparisonOperators<TSelf, TSelf, bool>, System::Numerics::IDecrementOperators<TSelf>, System::Numerics::IDivisionOperators<TSelf, TSelf, TSelf>, System::Numerics::IEqualityOperators<TSelf, TSelf, bool>, System::Numerics::IIncrementOperators<TSelf>, System::Numerics::IModulusOperators<TSelf, TSelf, TSelf>, System::Numerics::IMultiplicativeIdentity<TSelf, TSelf>, System::Numerics::IMultiplyOperators<TSelf, TSelf, TSelf>, System::Numerics::INumber<TSelf>, System::Numerics::INumberBase<TSelf>, System::Numerics::IShiftOperators<TSelf, int, TSelf>, System::Numerics::ISubtractionOperators<TSelf, TSelf, TSelf>, System::Numerics::IUnaryNegationOperators<TSelf, TSelf>, System::Numerics::IUnaryPlusOperators<TSelf, TSelf>" FrameworkAlternate="net-10.0;net-11.0;net-8.0;net-9.0" />
<TypeSignature Language="C#" Value="public interface IBinaryInteger<TSelf> : IComparable<TSelf>, IEquatable<TSelf>, IParsable<TSelf>, ISpanParsable<TSelf>, System.Numerics.IAdditionOperators<TSelf,TSelf,TSelf>, System.Numerics.IAdditiveIdentity<TSelf,TSelf>, System.Numerics.IBinaryNumber<TSelf>, System.Numerics.IBitwiseOperators<TSelf,TSelf,TSelf>, System.Numerics.IComparisonOperators<TSelf,TSelf,bool>, System.Numerics.IDecrementOperators<TSelf>, System.Numerics.IDivisionOperators<TSelf,TSelf,TSelf>, System.Numerics.IEqualityOperators<TSelf,TSelf,bool>, System.Numerics.IIncrementOperators<TSelf>, System.Numerics.IModulusOperators<TSelf,TSelf,TSelf>, System.Numerics.IMultiplicativeIdentity<TSelf,TSelf>, System.Numerics.IMultiplyOperators<TSelf,TSelf,TSelf>, System.Numerics.INumber<TSelf>, System.Numerics.INumberBase<TSelf>, System.Numerics.IShiftOperators<TSelf,int,TSelf>, System.Numerics.ISubtractionOperators<TSelf,TSelf,TSelf>, System.Numerics.IUnaryNegationOperators<TSelf,TSelf>, System.Numerics.IUnaryPlusOperators<TSelf,TSelf> where TSelf : IBinaryInteger<TSelf>" FrameworkAlternate="net-7.0" />
<TypeSignature Language="ILAsm" Value=".class public interface auto ansi abstract IBinaryInteger`1<(class System.Numerics.IBinaryInteger`1<!TSelf>) TSelf> implements class System.IComparable, class System.IComparable`1<!TSelf>, class System.IEquatable`1<!TSelf>, class System.IFormattable, class System.IParsable`1<!TSelf>, class System.ISpanFormattable, class System.ISpanParsable`1<!TSelf>, class System.Numerics.IAdditionOperators`3<!TSelf, !TSelf, !TSelf>, class System.Numerics.IAdditiveIdentity`2<!TSelf, !TSelf>, class System.Numerics.IBinaryNumber`1<!TSelf>, class System.Numerics.IBitwiseOperators`3<!TSelf, !TSelf, !TSelf>, class System.Numerics.IComparisonOperators`3<!TSelf, !TSelf, bool>, class System.Numerics.IDecrementOperators`1<!TSelf>, class System.Numerics.IDivisionOperators`3<!TSelf, !TSelf, !TSelf>, class System.Numerics.IEqualityOperators`3<!TSelf, !TSelf, bool>, class System.Numerics.IIncrementOperators`1<!TSelf>, class System.Numerics.IModulusOperators`3<!TSelf, !TSelf, !TSelf>, class System.Numerics.IMultiplicativeIdentity`2<!TSelf, !TSelf>, class System.Numerics.IMultiplyOperators`3<!TSelf, !TSelf, !TSelf>, class System.Numerics.INumber`1<!TSelf>, class System.Numerics.INumberBase`1<!TSelf>, class System.Numerics.IShiftOperators`3<!TSelf, int32, !TSelf>, class System.Numerics.ISubtractionOperators`3<!TSelf, !TSelf, !TSelf>, class System.Numerics.IUnaryNegationOperators`2<!TSelf, !TSelf>, class System.Numerics.IUnaryPlusOperators`2<!TSelf, !TSelf>" FrameworkAlternate="net-7.0" />
<TypeSignature Language="VB.NET" Value="Public Interface IBinaryInteger(Of TSelf)
Implements IAdditionOperators(Of TSelf, TSelf, TSelf), IAdditiveIdentity(Of TSelf, TSelf), IBinaryNumber(Of TSelf), IBitwiseOperators(Of TSelf, TSelf, TSelf), IComparable(Of TSelf), IComparisonOperators(Of TSelf, TSelf, Boolean), IDecrementOperators(Of TSelf), IDivisionOperators(Of TSelf, TSelf, TSelf), IEqualityOperators(Of TSelf, TSelf, Boolean), IEquatable(Of TSelf), IIncrementOperators(Of TSelf), IModulusOperators(Of TSelf, TSelf, TSelf), IMultiplicativeIdentity(Of TSelf, TSelf), IMultiplyOperators(Of TSelf, TSelf, TSelf), INumber(Of TSelf), INumberBase(Of TSelf), IParsable(Of TSelf), IShiftOperators(Of TSelf, Integer, TSelf), ISpanParsable(Of TSelf), ISubtractionOperators(Of TSelf, TSelf, TSelf), IUnaryNegationOperators(Of TSelf, TSelf), IUnaryPlusOperators(Of TSelf, TSelf)" FrameworkAlternate="net-7.0" />
<TypeSignature Language="F#" Value="type IBinaryInteger<'Self (requires 'Self :> IBinaryInteger<'Self>)> = interface
 interface IComparable
 interface IComparable<'Self (requires 'Self :> IBinaryInteger<'Self>)>
 interface IEquatable<'Self (requires 'Self :> IBinaryInteger<'Self>)>
 interface IFormattable
 interface IParsable<'Self (requires 'Self :> IBinaryInteger<'Self>)>
 interface ISpanFormattable
 interface ISpanParsable<'Self (requires 'Self :> IBinaryInteger<'Self>)>
 interface IAdditionOperators<'Self, 'Self, 'Self (requires 'Self :> IBinaryInteger<'Self> and 'Self :> IBinaryInteger<'Self> and 'Self :> IBinaryInteger<'Self>)>
 interface IAdditiveIdentity<'Self, 'Self (requires 'Self :> IBinaryInteger<'Self> and 'Self :> IBinaryInteger<'Self>)>
 interface IBinaryNumber<'Self (requires 'Self :> IBinaryInteger<'Self>)>
 interface IBitwiseOperators<'Self, 'Self, 'Self (requires 'Self :> IBinaryInteger<'Self> and 'Self :> IBinaryInteger<'Self> and 'Self :> IBinaryInteger<'Self>)>
 interface IComparisonOperators<'Self, 'Self, bool (requires 'Self :> IBinaryInteger<'Self> and 'Self :> IBinaryInteger<'Self>)>
 interface IEqualityOperators<'Self, 'Self, bool (requires 'Self :> IBinaryInteger<'Self> and 'Self :> IBinaryInteger<'Self>)>
 interface IDecrementOperators<'Self (requires 'Self :> IBinaryInteger<'Self>)>
 interface IDivisionOperators<'Self, 'Self, 'Self (requires 'Self :> IBinaryInteger<'Self> and 'Self :> IBinaryInteger<'Self> and 'Self :> IBinaryInteger<'Self>)>
 interface IIncrementOperators<'Self (requires 'Self :> IBinaryInteger<'Self>)>
 interface IModulusOperators<'Self, 'Self, 'Self (requires 'Self :> IBinaryInteger<'Self> and 'Self :> IBinaryInteger<'Self> and 'Self :> IBinaryInteger<'Self>)>
 interface IMultiplicativeIdentity<'Self, 'Self (requires 'Self :> IBinaryInteger<'Self> and 'Self :> IBinaryInteger<'Self>)>
 interface IMultiplyOperators<'Self, 'Self, 'Self (requires 'Self :> IBinaryInteger<'Self> and 'Self :> IBinaryInteger<'Self> and 'Self :> IBinaryInteger<'Self>)>
 interface INumber<'Self (requires 'Self :> IBinaryInteger<'Self>)>
 interface INumberBase<'Self (requires 'Self :> IBinaryInteger<'Self>)>
 interface ISubtractionOperators<'Self, 'Self, 'Self (requires 'Self :> IBinaryInteger<'Self> and 'Self :> IBinaryInteger<'Self> and 'Self :> IBinaryInteger<'Self>)>
 interface IUnaryNegationOperators<'Self, 'Self (requires 'Self :> IBinaryInteger<'Self> and 'Self :> IBinaryInteger<'Self>)>
 interface IUnaryPlusOperators<'Self, 'Self (requires 'Self :> IBinaryInteger<'Self> and 'Self :> IBinaryInteger<'Self>)>
 interface IShiftOperators<'Self, int, 'Self (requires 'Self :> IBinaryInteger<'Self> and 'Self :> IBinaryInteger<'Self>)>" FrameworkAlternate="net-7.0" />
<TypeSignature Language="C++ CLI" Value="generic <typename TSelf>
 where TSelf : IBinaryInteger<TSelf>public interface class IBinaryInteger : IComparable<TSelf>, IEquatable<TSelf>, IParsable<TSelf>, ISpanParsable<TSelf>, System::Numerics::IAdditionOperators<TSelf, TSelf, TSelf>, System::Numerics::IAdditiveIdentity<TSelf, TSelf>, System::Numerics::IBinaryNumber<TSelf>, System::Numerics::IBitwiseOperators<TSelf, TSelf, TSelf>, System::Numerics::IComparisonOperators<TSelf, TSelf, bool>, System::Numerics::IDecrementOperators<TSelf>, System::Numerics::IDivisionOperators<TSelf, TSelf, TSelf>, System::Numerics::IEqualityOperators<TSelf, TSelf, bool>, System::Numerics::IIncrementOperators<TSelf>, System::Numerics::IModulusOperators<TSelf, TSelf, TSelf>, System::Numerics::IMultiplicativeIdentity<TSelf, TSelf>, System::Numerics::IMultiplyOperators<TSelf, TSelf, TSelf>, System::Numerics::INumber<TSelf>, System::Numerics::INumberBase<TSelf>, System::Numerics::IShiftOperators<TSelf, int, TSelf>, System::Numerics::ISubtractionOperators<TSelf, TSelf, TSelf>, System::Numerics::IUnaryNegationOperators<TSelf, TSelf>, System::Numerics::IUnaryPlusOperators<TSelf, TSelf>" FrameworkAlternate="net-7.0" />
<TypeSignature Language="F#" Value="type IBinaryInteger<'Self (requires 'Self :> IBinaryInteger<'Self>)> = interface
 interface IComparable
 interface IComparable<'Self (requires 'Self :> IBinaryInteger<'Self>)>
 interface IEquatable<'Self (requires 'Self :> IBinaryInteger<'Self>)>
 interface IFormattable
 interface IParsable<'Self (requires 'Self :> IBinaryInteger<'Self>)>
 interface ISpanFormattable
 interface ISpanParsable<'Self (requires 'Self :> IBinaryInteger<'Self>)>
 interface IAdditionOperators<'Self, 'Self, 'Self (requires 'Self :> IBinaryInteger<'Self> and 'Self :> IBinaryInteger<'Self> and 'Self :> IBinaryInteger<'Self>)>
 interface IAdditiveIdentity<'Self, 'Self (requires 'Self :> IBinaryInteger<'Self> and 'Self :> IBinaryInteger<'Self>)>
 interface IBinaryNumber<'Self (requires 'Self :> IBinaryInteger<'Self>)>
 interface IBitwiseOperators<'Self, 'Self, 'Self (requires 'Self :> IBinaryInteger<'Self> and 'Self :> IBinaryInteger<'Self> and 'Self :> IBinaryInteger<'Self>)>
 interface IComparisonOperators<'Self, 'Self, bool (requires 'Self :> IBinaryInteger<'Self> and 'Self :> IBinaryInteger<'Self>)>
 interface IEqualityOperators<'Self, 'Self, bool (requires 'Self :> IBinaryInteger<'Self> and 'Self :> IBinaryInteger<'Self>)>
 interface IDecrementOperators<'Self (requires 'Self :> IBinaryInteger<'Self>)>
 interface IDivisionOperators<'Self, 'Self, 'Self (requires 'Self :> IBinaryInteger<'Self> and 'Self :> IBinaryInteger<'Self> and 'Self :> IBinaryInteger<'Self>)>
 interface IIncrementOperators<'Self (requires 'Self :> IBinaryInteger<'Self>)>
 interface IModulusOperators<'Self, 'Self, 'Self (requires 'Self :> IBinaryInteger<'Self> and 'Self :> IBinaryInteger<'Self> and 'Self :> IBinaryInteger<'Self>)>
 interface IMultiplicativeIdentity<'Self, 'Self (requires 'Self :> IBinaryInteger<'Self> and 'Self :> IBinaryInteger<'Self>)>
 interface IMultiplyOperators<'Self, 'Self, 'Self (requires 'Self :> IBinaryInteger<'Self> and 'Self :> IBinaryInteger<'Self> and 'Self :> IBinaryInteger<'Self>)>
 interface INumber<'Self (requires 'Self :> IBinaryInteger<'Self>)>
 interface INumberBase<'Self (requires 'Self :> IBinaryInteger<'Self>)>
 interface ISubtractionOperators<'Self, 'Self, 'Self (requires 'Self :> IBinaryInteger<'Self> and 'Self :> IBinaryInteger<'Self> and 'Self :> IBinaryInteger<'Self>)>
 interface IUnaryNegationOperators<'Self, 'Self (requires 'Self :> IBinaryInteger<'Self> and 'Self :> IBinaryInteger<'Self>)>
 interface IUnaryPlusOperators<'Self, 'Self (requires 'Self :> IBinaryInteger<'Self> and 'Self :> IBinaryInteger<'Self>)>
 interface IUtf8SpanFormattable
 interface IUtf8SpanParsable<'Self (requires 'Self :> IBinaryInteger<'Self>)>
 interface IShiftOperators<'Self, int, 'Self (requires 'Self :> IBinaryInteger<'Self> and 'Self :> IBinaryInteger<'Self>)>" FrameworkAlternate="net-8.0" />
<AssemblyInfo>
<AssemblyName>System.Runtime</AssemblyName>
<AssemblyVersion>7.0.0.0</AssemblyVersion>
<AssemblyVersion>8.0.0.0</AssemblyVersion>
<AssemblyVersion>9.0.0.0</AssemblyVersion>
<AssemblyVersion>10.0.0.0</AssemblyVersion>
<AssemblyVersion>11.0.0.0</AssemblyVersion>
</AssemblyInfo>
<TypeParameters>
<TypeParameter Name="TSelf">
<Attributes>
<Attribute FrameworkAlternate="net-10.0;net-11.0;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>
<Constraints>
<InterfaceName>System.Numerics.IBinaryInteger<TSelf></InterfaceName>
</Constraints>
</TypeParameter>
</TypeParameters>
<Interfaces>
<Interface>
<InterfaceName>System.IComparable</InterfaceName>
</Interface>
<Interface>
<InterfaceName>System.IComparable<TSelf></InterfaceName>
</Interface>
<Interface>
<InterfaceName>System.IEquatable<TSelf></InterfaceName>
</Interface>
<Interface>
<InterfaceName>System.IFormattable</InterfaceName>
</Interface>
<Interface>
<InterfaceName>System.IParsable<TSelf></InterfaceName>
</Interface>
<Interface>
<InterfaceName>System.ISpanFormattable</InterfaceName>
</Interface>
<Interface>
<InterfaceName>System.ISpanParsable<TSelf></InterfaceName>
</Interface>
<Interface FrameworkAlternate="net-10.0;net-11.0;net-8.0;net-9.0">
<InterfaceName>System.IUtf8SpanFormattable</InterfaceName>
</Interface>
<Interface FrameworkAlternate="net-10.0;net-11.0;net-8.0;net-9.0">
<InterfaceName>System.IUtf8SpanParsable<TSelf></InterfaceName>
</Interface>
<Interface>
<InterfaceName>System.Numerics.IAdditionOperators<TSelf,TSelf,TSelf></InterfaceName>
</Interface>
<Interface>
<InterfaceName>System.Numerics.IAdditiveIdentity<TSelf,TSelf></InterfaceName>
</Interface>
<Interface>
<InterfaceName>System.Numerics.IBinaryNumber<TSelf></InterfaceName>
</Interface>
<Interface>
<InterfaceName>System.Numerics.IBitwiseOperators<TSelf,TSelf,TSelf></InterfaceName>
</Interface>
<Interface>
<InterfaceName>System.Numerics.IComparisonOperators<TSelf,TSelf,System.Boolean></InterfaceName>
</Interface>
<Interface>
<InterfaceName>System.Numerics.IDecrementOperators<TSelf></InterfaceName>
</Interface>
<Interface>
<InterfaceName>System.Numerics.IDivisionOperators<TSelf,TSelf,TSelf></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<TSelf></InterfaceName>
</Interface>
<Interface>
<InterfaceName>System.Numerics.IModulusOperators<TSelf,TSelf,TSelf></InterfaceName>
</Interface>
<Interface>
<InterfaceName>System.Numerics.IMultiplicativeIdentity<TSelf,TSelf></InterfaceName>
</Interface>
<Interface>
<InterfaceName>System.Numerics.IMultiplyOperators<TSelf,TSelf,TSelf></InterfaceName>
</Interface>
<Interface>
<InterfaceName>System.Numerics.INumber<TSelf></InterfaceName>
</Interface>
<Interface>
<InterfaceName>System.Numerics.INumberBase<TSelf></InterfaceName>
</Interface>
<Interface>
<InterfaceName>System.Numerics.IShiftOperators<TSelf,System.Int32,TSelf></InterfaceName>
</Interface>
<Interface>
<InterfaceName>System.Numerics.ISubtractionOperators<TSelf,TSelf,TSelf></InterfaceName>
</Interface>
<Interface>
<InterfaceName>System.Numerics.IUnaryNegationOperators<TSelf,TSelf></InterfaceName>
</Interface>
<Interface>
<InterfaceName>System.Numerics.IUnaryPlusOperators<TSelf,TSelf></InterfaceName>
</Interface>
</Interfaces>
<Docs>
<typeparam name="TSelf">The type that implements the interface.</typeparam>
<summary>Defines an integer type that is represented in a base-2 format.</summary>
<remarks>To be added.</remarks>
</Docs>
<Members>
<Member MemberName="Divide">
<MemberSignature Language="C#" Value="public static virtual TSelf Divide (TSelf left, TSelf right, System.Numerics.DivisionRounding mode);" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig virtual !TSelf Divide(!TSelf left, !TSelf right, valuetype System.Numerics.DivisionRounding mode) cil managed" />
<MemberSignature Language="DocId" Value="M:System.Numerics.IBinaryInteger`1.Divide(`0,`0,System.Numerics.DivisionRounding)" />
<MemberSignature Language="VB.NET" Value="Public Shared Overrides Function Divide (left As TSelf, right As TSelf, mode As DivisionRounding) As TSelf" />
<MemberSignature Language="F#" Value="static member Divide : 'Self * 'Self * System.Numerics.DivisionRounding -> 'Self" Usage="System.Numerics.IBinaryInteger<'Self (requires 'Self :> System.Numerics.IBinaryInteger<'Self>)>.Divide (left, right, mode)" />
<MemberSignature Language="C++ CLI" Value="public:
 static override TSelf Divide(TSelf left, TSelf right, System::Numerics::DivisionRounding mode);" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>System.Runtime</AssemblyName>
<AssemblyVersion>11.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>TSelf</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="left" Type="TSelf" Index="0" FrameworkAlternate="net-11.0" />
<Parameter Name="right" Type="TSelf" Index="1" FrameworkAlternate="net-11.0" />
<Parameter Name="mode" Type="System.Numerics.DivisionRounding" Index="2" FrameworkAlternate="net-11.0" />
</Parameters>
<Docs>
<param name="left">To be added.</param>
<param name="right">To be added.</param>
<param name="mode">To be added.</param>
<summary>To be added.</summary>
<returns>To be added.</returns>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="DivRem">
<MemberSignature Language="C#" Value="public static virtual (TSelf Quotient, TSelf Remainder) DivRem (TSelf left, TSelf right);" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig virtual valuetype System.ValueTuple`2<!TSelf, !TSelf> DivRem(!TSelf left, !TSelf right) cil managed" />
<MemberSignature Language="DocId" Value="M:System.Numerics.IBinaryInteger`1.DivRem(`0,`0)" />
<MemberSignature Language="VB.NET" Value="Public Shared Overrides Function DivRem (left As TSelf, right As TSelf) As ValueTuple(Of TSelf, TSelf)" />
<MemberSignature Language="F#" Value="static member DivRem : 'Self * 'Self -> ValueTuple<'Self, 'Self (requires 'Self :> System.Numerics.IBinaryInteger<'Self> and 'Self :> System.Numerics.IBinaryInteger<'Self>)>" Usage="System.Numerics.IBinaryInteger<'Self (requires 'Self :> System.Numerics.IBinaryInteger<'Self>)>.DivRem (left, right)" />
<MemberSignature Language="C++ CLI" Value="public:
 static override ValueTuple<TSelf, TSelf> DivRem(TSelf left, TSelf right);" />
<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>
<AssemblyVersion>10.0.0.0</AssemblyVersion>
<AssemblyVersion>11.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.ValueTuple<TSelf,TSelf></ReturnType>
<Attributes>
<Attribute FrameworkAlternate="net-10.0">
<AttributeName Language="C#">[System.Runtime.CompilerServices.Nullable(new System.Byte[] { 0, 1, 1 })]</AttributeName>
<AttributeName Language="F#">[<System.Runtime.CompilerServices.Nullable(new System.Byte[] { 0, 1, 1 })>]</AttributeName>
</Attribute>
<Attribute FrameworkAlternate="net-10.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="TSelf" />
<Parameter Name="right" Type="TSelf" />
</Parameters>
<Docs>
<param name="left">The value that <paramref name="right" /> divides.</param>
<param name="right">The value that 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>
<exception cref="T:System.DivideByZeroException">
<paramref name="right" /> is zero.</exception>
</Docs>
</Member>
<Member MemberName="DivRem">
<MemberSignature Language="C#" Value="public static virtual (TSelf Quotient, TSelf Remainder) DivRem (TSelf left, TSelf right, System.Numerics.DivisionRounding mode);" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig virtual valuetype System.ValueTuple`2<!TSelf, !TSelf> DivRem(!TSelf left, !TSelf right, valuetype System.Numerics.DivisionRounding mode) cil managed" />
<MemberSignature Language="DocId" Value="M:System.Numerics.IBinaryInteger`1.DivRem(`0,`0,System.Numerics.DivisionRounding)" />
<MemberSignature Language="VB.NET" Value="Public Shared Overrides Function DivRem (left As TSelf, right As TSelf, mode As DivisionRounding) As ValueTuple(Of TSelf, TSelf)" />
<MemberSignature Language="F#" Value="static member DivRem : 'Self * 'Self * System.Numerics.DivisionRounding -> ValueTuple<'Self, 'Self (requires 'Self :> System.Numerics.IBinaryInteger<'Self> and 'Self :> System.Numerics.IBinaryInteger<'Self>)>" Usage="System.Numerics.IBinaryInteger<'Self (requires 'Self :> System.Numerics.IBinaryInteger<'Self>)>.DivRem (left, right, mode)" />
<MemberSignature Language="C++ CLI" Value="public:
 static override ValueTuple<TSelf, TSelf> DivRem(TSelf left, TSelf right, System::Numerics::DivisionRounding mode);" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>System.Runtime</AssemblyName>
<AssemblyVersion>11.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.ValueTuple<TSelf,TSelf></ReturnType>
<Attributes>
<Attribute>
<AttributeName Language="C#">[System.Runtime.CompilerServices.Nullable(new System.Byte[] { 0, 1, 1 })]</AttributeName>
<AttributeName Language="F#">[<System.Runtime.CompilerServices.Nullable(new System.Byte[] { 0, 1, 1 })>]</AttributeName>
</Attribute>
<Attribute>
<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="TSelf" Index="0" FrameworkAlternate="net-11.0" />
<Parameter Name="right" Type="TSelf" Index="1" FrameworkAlternate="net-11.0" />
<Parameter Name="mode" Type="System.Numerics.DivisionRounding" Index="2" FrameworkAlternate="net-11.0" />
</Parameters>
<Docs>
<param name="left">To be added.</param>
<param name="right">To be added.</param>
<param name="mode">To be added.</param>
<summary>To be added.</summary>
<returns>To be added.</returns>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="GetByteCount">
<MemberSignature Language="C#" Value="public int GetByteCount ();" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance int32 GetByteCount() cil managed" />
<MemberSignature Language="DocId" Value="M:System.Numerics.IBinaryInteger`1.GetByteCount" />
<MemberSignature Language="VB.NET" Value="Public Function GetByteCount () As Integer" />
<MemberSignature Language="F#" Value="abstract member GetByteCount : unit -> int" Usage="iBinaryInteger.GetByteCount " />
<MemberSignature Language="C++ CLI" Value="public:
 int GetByteCount();" />
<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>
<AssemblyVersion>10.0.0.0</AssemblyVersion>
<AssemblyVersion>11.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Int32</ReturnType>
</ReturnValue>
<Parameters />
<Docs>
<summary>Gets the number of bytes that will be written as part of <see cref="M:System.Numerics.IBinaryInteger`1.TryWriteLittleEndian(System.Span{System.Byte},System.Int32@)" />.</summary>
<returns>The number of bytes that will be written as part of <see cref="M:System.Numerics.IBinaryInteger`1.TryWriteLittleEndian(System.Span{System.Byte},System.Int32@)" />.</returns>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="GetShortestBitLength">
<MemberSignature Language="C#" Value="public int GetShortestBitLength ();" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance int32 GetShortestBitLength() cil managed" />
<MemberSignature Language="DocId" Value="M:System.Numerics.IBinaryInteger`1.GetShortestBitLength" />
<MemberSignature Language="VB.NET" Value="Public Function GetShortestBitLength () As Integer" />
<MemberSignature Language="F#" Value="abstract member GetShortestBitLength : unit -> int" Usage="iBinaryInteger.GetShortestBitLength " />
<MemberSignature Language="C++ CLI" Value="public:
 int GetShortestBitLength();" />
<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>
<AssemblyVersion>10.0.0.0</AssemblyVersion>
<AssemblyVersion>11.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Int32</ReturnType>
</ReturnValue>
<Parameters />
<Docs>
<summary>Gets the length, in bits, of the shortest two's complement representation of the current value.</summary>
<returns>The length, in bits, of the shortest two's complement representation of the current value.</returns>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="LeadingZeroCount">
<MemberSignature Language="C#" Value="public static virtual TSelf LeadingZeroCount (TSelf value);" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig virtual !TSelf LeadingZeroCount(!TSelf value) cil managed" />
<MemberSignature Language="DocId" Value="M:System.Numerics.IBinaryInteger`1.LeadingZeroCount(`0)" />
<MemberSignature Language="VB.NET" Value="Public Shared Overrides Function LeadingZeroCount (value As TSelf) As TSelf" />
<MemberSignature Language="F#" Value="static member LeadingZeroCount : 'Self -> 'Self" Usage="System.Numerics.IBinaryInteger<'Self (requires 'Self :> System.Numerics.IBinaryInteger<'Self>)>.LeadingZeroCount value" />
<MemberSignature Language="C++ CLI" Value="public:
 static override TSelf LeadingZeroCount(TSelf value);" />
<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>
<AssemblyVersion>10.0.0.0</AssemblyVersion>
<AssemblyVersion>11.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>TSelf</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="value" Type="TSelf" />
</Parameters>
<Docs>
<param name="value">The value whose leading zero bits are to be counted.</param>
<summary>Computes the number of leading zero bits in a value.</summary>
<returns>The number of leading zero bits in <paramref name="value" />.</returns>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="PopCount">
<MemberSignature Language="C#" Value="public static abstract TSelf PopCount (TSelf value);" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig virtual !TSelf PopCount(!TSelf value) cil managed" />
<MemberSignature Language="DocId" Value="M:System.Numerics.IBinaryInteger`1.PopCount(`0)" />
<MemberSignature Language="VB.NET" Value="Public Shared Function PopCount (value As TSelf) As TSelf" />
<MemberSignature Language="F#" Value="static member PopCount : 'Self -> 'Self" Usage="System.Numerics.IBinaryInteger<'Self (requires 'Self :> System.Numerics.IBinaryInteger<'Self>)>.PopCount value" />
<MemberSignature Language="C++ CLI" Value="public:
 static TSelf PopCount(TSelf value);" />
<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>
<AssemblyVersion>10.0.0.0</AssemblyVersion>
<AssemblyVersion>11.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>TSelf</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="value" Type="TSelf" />
</Parameters>
<Docs>
<param name="value">The value whose set bits are to be counted.</param>
<summary>Computes the number of bits that are set in a value.</summary>
<returns>The number of set bits in <paramref name="value" />.</returns>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="ReadBigEndian">
<MemberSignature Language="C#" Value="public static virtual TSelf ReadBigEndian (byte[] source, bool isUnsigned);" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig virtual !TSelf ReadBigEndian(unsigned int8[] source, bool isUnsigned) cil managed" />
<MemberSignature Language="DocId" Value="M:System.Numerics.IBinaryInteger`1.ReadBigEndian(System.Byte[],System.Boolean)" />
<MemberSignature Language="VB.NET" Value="Public Shared Overrides Function ReadBigEndian (source As Byte(), isUnsigned As Boolean) As TSelf" />
<MemberSignature Language="F#" Value="static member ReadBigEndian : byte[] * bool -> 'Self" Usage="System.Numerics.IBinaryInteger<'Self (requires 'Self :> System.Numerics.IBinaryInteger<'Self>)>.ReadBigEndian (source, isUnsigned)" />
<MemberSignature Language="C++ CLI" Value="public:
 static override TSelf ReadBigEndian(cli::array <System::Byte> ^ source, bool isUnsigned);" />
<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>
<AssemblyVersion>10.0.0.0</AssemblyVersion>
<AssemblyVersion>11.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>TSelf</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="source" Type="System.Byte[]" />
<Parameter Name="isUnsigned" Type="System.Boolean" />
</Parameters>
<Docs>
<param name="source">The array from which the two's complement number should be read.</param>
<param name="isUnsigned">
<see langword="true" /> if <paramref name="source" /> represents an unsigned two's complement number; otherwise, <see langword="false" /> to indicate it represents a signed two's complement number.</param>
<summary>Reads a two's complement number from a given array, in big-endian format, and converts it to an instance of the current type.</summary>
<returns>The value read from <paramref name="source" />.</returns>
<remarks>To be added.</remarks>
<exception cref="T:System.OverflowException">
<paramref name="source" /> is not representable by <typeparamref name="TSelf" /></exception>
</Docs>
</Member>
<Member MemberName="ReadBigEndian">
<MemberSignature Language="C#" Value="public static virtual TSelf ReadBigEndian (ReadOnlySpan<byte> source, bool isUnsigned);" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig virtual !TSelf ReadBigEndian(valuetype System.ReadOnlySpan`1<unsigned int8> source, bool isUnsigned) cil managed" />
<MemberSignature Language="DocId" Value="M:System.Numerics.IBinaryInteger`1.ReadBigEndian(System.ReadOnlySpan{System.Byte},System.Boolean)" />
<MemberSignature Language="VB.NET" Value="Public Shared Overrides Function ReadBigEndian (source As ReadOnlySpan(Of Byte), isUnsigned As Boolean) As TSelf" />
<MemberSignature Language="F#" Value="static member ReadBigEndian : ReadOnlySpan<byte> * bool -> 'Self" Usage="System.Numerics.IBinaryInteger<'Self (requires 'Self :> System.Numerics.IBinaryInteger<'Self>)>.ReadBigEndian (source, isUnsigned)" />
<MemberSignature Language="C++ CLI" Value="public:
 static override TSelf ReadBigEndian(ReadOnlySpan<System::Byte> source, bool isUnsigned);" />
<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>
<AssemblyVersion>10.0.0.0</AssemblyVersion>
<AssemblyVersion>11.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>TSelf</ReturnType>
<Attributes>
<Attribute FrameworkAlternate="net-10.0">
<AttributeName Language="C#">[System.Runtime.CompilerServices.Nullable(1)]</AttributeName>
<AttributeName Language="F#">[<System.Runtime.CompilerServices.Nullable(1)>]</AttributeName>
</Attribute>
</Attributes>
</ReturnValue>
<Parameters>
<Parameter Name="source" Type="System.ReadOnlySpan<System.Byte>" />
<Parameter Name="isUnsigned" Type="System.Boolean" />
</Parameters>
<Docs>
<param name="source">The array from which the two's complement number should be read.</param>
<param name="isUnsigned">
<see langword="true" /> if <paramref name="source" /> represents an unsigned two's complement number; otherwise, <see langword="false" /> to indicate it represents a signed two's complement number.</param>
<summary>Reads a two's complement number from a given span, in big-endian format, and converts it to an instance of the current type.</summary>
<returns>The value read from <paramref name="source" />.</returns>
<remarks>To be added.</remarks>
<exception cref="T:System.OverflowException">
<paramref name="source" /> is not representable by <typeparamref name="TSelf" /></exception>
</Docs>
</Member>
<Member MemberName="ReadBigEndian">
<MemberSignature Language="C#" Value="public static virtual TSelf ReadBigEndian (byte[] source, int startIndex, bool isUnsigned);" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig virtual !TSelf ReadBigEndian(unsigned int8[] source, int32 startIndex, bool isUnsigned) cil managed" />
<MemberSignature Language="DocId" Value="M:System.Numerics.IBinaryInteger`1.ReadBigEndian(System.Byte[],System.Int32,System.Boolean)" />
<MemberSignature Language="VB.NET" Value="Public Shared Overrides Function ReadBigEndian (source As Byte(), startIndex As Integer, isUnsigned As Boolean) As TSelf" />
<MemberSignature Language="F#" Value="static member ReadBigEndian : byte[] * int * bool -> 'Self" Usage="System.Numerics.IBinaryInteger<'Self (requires 'Self :> System.Numerics.IBinaryInteger<'Self>)>.ReadBigEndian (source, startIndex, isUnsigned)" />
<MemberSignature Language="C++ CLI" Value="public:
 static override TSelf ReadBigEndian(cli::array <System::Byte> ^ source, int startIndex, bool isUnsigned);" />
<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>
<AssemblyVersion>10.0.0.0</AssemblyVersion>
<AssemblyVersion>11.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>TSelf</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="source" Type="System.Byte[]" />
<Parameter Name="startIndex" Type="System.Int32" />
<Parameter Name="isUnsigned" Type="System.Boolean" />
</Parameters>
<Docs>
<param name="source">The array from which the two's complement number should be read.</param>
<param name="startIndex">The starting index from which the value should be read.</param>
<param name="isUnsigned">
<see langword="true" /> if <paramref name="source" /> represents an unsigned two's complement number; otherwise, <see langword="false" /> to indicate it represents a signed two's complement number.</param>
<summary>Reads a two's complement number from a given array, in big-endian format, and converts it to an instance of the current type.</summary>
<returns>The value read from <paramref name="source" /> starting at <paramref name="startIndex" />.</returns>
<remarks>To be added.</remarks>
<exception cref="T:System.OverflowException">
<paramref name="source" /> is not representable by <typeparamref name="TSelf" /></exception>
</Docs>
</Member>
<Member MemberName="ReadLittleEndian">
<MemberSignature Language="C#" Value="public static virtual TSelf ReadLittleEndian (byte[] source, bool isUnsigned);" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig virtual !TSelf ReadLittleEndian(unsigned int8[] source, bool isUnsigned) cil managed" />
<MemberSignature Language="DocId" Value="M:System.Numerics.IBinaryInteger`1.ReadLittleEndian(System.Byte[],System.Boolean)" />
<MemberSignature Language="VB.NET" Value="Public Shared Overrides Function ReadLittleEndian (source As Byte(), isUnsigned As Boolean) As TSelf" />
<MemberSignature Language="F#" Value="static member ReadLittleEndian : byte[] * bool -> 'Self" Usage="System.Numerics.IBinaryInteger<'Self (requires 'Self :> System.Numerics.IBinaryInteger<'Self>)>.ReadLittleEndian (source, isUnsigned)" />
<MemberSignature Language="C++ CLI" Value="public:
 static override TSelf ReadLittleEndian(cli::array <System::Byte> ^ source, bool isUnsigned);" />
<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>
<AssemblyVersion>10.0.0.0</AssemblyVersion>
<AssemblyVersion>11.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>TSelf</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="source" Type="System.Byte[]" />
<Parameter Name="isUnsigned" Type="System.Boolean" />
</Parameters>
<Docs>
<param name="source">The array from which the two's complement number should be read.</param>
<param name="isUnsigned">
<see langword="true" /> if <paramref name="source" /> represents an unsigned two's complement number; otherwise, <see langword="false" /> to indicate it represents a signed two's complement number.</param>
<summary>Reads a two's complement number from a given array, in little-endian format, and converts it to an instance of the current type.</summary>
<returns>The value read from <paramref name="source" />.</returns>
<remarks>To be added.</remarks>
<exception cref="T:System.OverflowException">
<paramref name="source" /> is not representable by <typeparamref name="TSelf" /></exception>
</Docs>
</Member>
<Member MemberName="ReadLittleEndian">
<MemberSignature Language="C#" Value="public static virtual TSelf ReadLittleEndian (ReadOnlySpan<byte> source, bool isUnsigned);" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig virtual !TSelf ReadLittleEndian(valuetype System.ReadOnlySpan`1<unsigned int8> source, bool isUnsigned) cil managed" />
<MemberSignature Language="DocId" Value="M:System.Numerics.IBinaryInteger`1.ReadLittleEndian(System.ReadOnlySpan{System.Byte},System.Boolean)" />
<MemberSignature Language="VB.NET" Value="Public Shared Overrides Function ReadLittleEndian (source As ReadOnlySpan(Of Byte), isUnsigned As Boolean) As TSelf" />
<MemberSignature Language="F#" Value="static member ReadLittleEndian : ReadOnlySpan<byte> * bool -> 'Self" Usage="System.Numerics.IBinaryInteger<'Self (requires 'Self :> System.Numerics.IBinaryInteger<'Self>)>.ReadLittleEndian (source, isUnsigned)" />
<MemberSignature Language="C++ CLI" Value="public:
 static override TSelf ReadLittleEndian(ReadOnlySpan<System::Byte> source, bool isUnsigned);" />
<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>
<AssemblyVersion>10.0.0.0</AssemblyVersion>
<AssemblyVersion>11.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>TSelf</ReturnType>
<Attributes>
<Attribute FrameworkAlternate="net-10.0">
<AttributeName Language="C#">[System.Runtime.CompilerServices.Nullable(1)]</AttributeName>
<AttributeName Language="F#">[<System.Runtime.CompilerServices.Nullable(1)>]</AttributeName>
</Attribute>
</Attributes>
</ReturnValue>
<Parameters>
<Parameter Name="source" Type="System.ReadOnlySpan<System.Byte>" />
<Parameter Name="isUnsigned" Type="System.Boolean" />
</Parameters>
<Docs>
<param name="source">The array from which the two's complement number should be read.</param>
<param name="isUnsigned">
<see langword="true" /> if <paramref name="source" /> represents an unsigned two's complement number; otherwise, <see langword="false" /> to indicate it represents a signed two's complement number.</param>
<summary>Reads a two's complement number from a given span, in little-endian format, and converts it to an instance of the current type.</summary>
<returns>The value read from <paramref name="source" />.</returns>
<remarks>To be added.</remarks>
<exception cref="T:System.OverflowException">
<paramref name="source" /> is not representable by <typeparamref name="TSelf" /></exception>
</Docs>
</Member>
<Member MemberName="ReadLittleEndian">
<MemberSignature Language="C#" Value="public static virtual TSelf ReadLittleEndian (byte[] source, int startIndex, bool isUnsigned);" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig virtual !TSelf ReadLittleEndian(unsigned int8[] source, int32 startIndex, bool isUnsigned) cil managed" />
<MemberSignature Language="DocId" Value="M:System.Numerics.IBinaryInteger`1.ReadLittleEndian(System.Byte[],System.Int32,System.Boolean)" />
<MemberSignature Language="VB.NET" Value="Public Shared Overrides Function ReadLittleEndian (source As Byte(), startIndex As Integer, isUnsigned As Boolean) As TSelf" />
<MemberSignature Language="F#" Value="static member ReadLittleEndian : byte[] * int * bool -> 'Self" Usage="System.Numerics.IBinaryInteger<'Self (requires 'Self :> System.Numerics.IBinaryInteger<'Self>)>.ReadLittleEndian (source, startIndex, isUnsigned)" />
<MemberSignature Language="C++ CLI" Value="public:
 static override TSelf ReadLittleEndian(cli::array <System::Byte> ^ source, int startIndex, bool isUnsigned);" />
<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>
<AssemblyVersion>10.0.0.0</AssemblyVersion>
<AssemblyVersion>11.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>TSelf</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="source" Type="System.Byte[]" />
<Parameter Name="startIndex" Type="System.Int32" />
<Parameter Name="isUnsigned" Type="System.Boolean" />
</Parameters>
<Docs>
<param name="source">The array from which the two's complement number should be read.</param>
<param name="startIndex">The starting index from which the value should be read.</param>
<param name="isUnsigned">
<see langword="true" /> if <paramref name="source" /> represents an unsigned two's complement number; otherwise, <see langword="false" /> to indicate it represents a signed two's complement number.</param>
<summary>Reads a two's complement number from a given array, in little-endian format, and converts it to an instance of the current type.</summary>
<returns>The value read from <paramref name="source" /> starting at <paramref name="startIndex" />.</returns>
<remarks>To be added.</remarks>
<exception cref="T:System.OverflowException">
<paramref name="source" /> is not representable by <typeparamref name="TSelf" /></exception>
</Docs>
</Member>
<Member MemberName="Remainder">
<MemberSignature Language="C#" Value="public static virtual TSelf Remainder (TSelf left, TSelf right, System.Numerics.DivisionRounding mode);" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig virtual !TSelf Remainder(!TSelf left, !TSelf right, valuetype System.Numerics.DivisionRounding mode) cil managed" />
<MemberSignature Language="DocId" Value="M:System.Numerics.IBinaryInteger`1.Remainder(`0,`0,System.Numerics.DivisionRounding)" />
<MemberSignature Language="VB.NET" Value="Public Shared Overrides Function Remainder (left As TSelf, right As TSelf, mode As DivisionRounding) As TSelf" />
<MemberSignature Language="F#" Value="static member Remainder : 'Self * 'Self * System.Numerics.DivisionRounding -> 'Self" Usage="System.Numerics.IBinaryInteger<'Self (requires 'Self :> System.Numerics.IBinaryInteger<'Self>)>.Remainder (left, right, mode)" />
<MemberSignature Language="C++ CLI" Value="public:
 static override TSelf Remainder(TSelf left, TSelf right, System::Numerics::DivisionRounding mode);" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>System.Runtime</AssemblyName>
<AssemblyVersion>11.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>TSelf</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="left" Type="TSelf" Index="0" FrameworkAlternate="net-11.0" />
<Parameter Name="right" Type="TSelf" Index="1" FrameworkAlternate="net-11.0" />
<Parameter Name="mode" Type="System.Numerics.DivisionRounding" Index="2" FrameworkAlternate="net-11.0" />
</Parameters>
<Docs>
<param name="left">To be added.</param>
<param name="right">To be added.</param>
<param name="mode">To be added.</param>
<summary>To be added.</summary>
<returns>To be added.</returns>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="RotateLeft">
<MemberSignature Language="C#" Value="public static virtual TSelf RotateLeft (TSelf value, int rotateAmount);" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig virtual !TSelf RotateLeft(!TSelf value, int32 rotateAmount) cil managed" />
<MemberSignature Language="DocId" Value="M:System.Numerics.IBinaryInteger`1.RotateLeft(`0,System.Int32)" />
<MemberSignature Language="VB.NET" Value="Public Shared Overrides Function RotateLeft (value As TSelf, rotateAmount As Integer) As TSelf" />
<MemberSignature Language="F#" Value="static member RotateLeft : 'Self * int -> 'Self" Usage="System.Numerics.IBinaryInteger<'Self (requires 'Self :> System.Numerics.IBinaryInteger<'Self>)>.RotateLeft (value, rotateAmount)" />
<MemberSignature Language="C++ CLI" Value="public:
 static override TSelf RotateLeft(TSelf value, int rotateAmount);" />
<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>
<AssemblyVersion>10.0.0.0</AssemblyVersion>
<AssemblyVersion>11.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>TSelf</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="value" Type="TSelf" />
<Parameter Name="rotateAmount" Type="System.Int32" />
</Parameters>
<Docs>
<param name="value">The value that is rotated left by <paramref name="rotateAmount" />.</param>
<param name="rotateAmount">The amount by which <paramref name="value" /> is rotated left.</param>
<summary>Rotates a value left by a given amount.</summary>
<returns>The result of rotating <paramref name="value" /> left by <paramref name="rotateAmount" />.</returns>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="RotateRight">
<MemberSignature Language="C#" Value="public static virtual TSelf RotateRight (TSelf value, int rotateAmount);" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig virtual !TSelf RotateRight(!TSelf value, int32 rotateAmount) cil managed" />
<MemberSignature Language="DocId" Value="M:System.Numerics.IBinaryInteger`1.RotateRight(`0,System.Int32)" />
<MemberSignature Language="VB.NET" Value="Public Shared Overrides Function RotateRight (value As TSelf, rotateAmount As Integer) As TSelf" />
<MemberSignature Language="F#" Value="static member RotateRight : 'Self * int -> 'Self" Usage="System.Numerics.IBinaryInteger<'Self (requires 'Self :> System.Numerics.IBinaryInteger<'Self>)>.RotateRight (value, rotateAmount)" />
<MemberSignature Language="C++ CLI" Value="public:
 static override TSelf RotateRight(TSelf value, int rotateAmount);" />
<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>
<AssemblyVersion>10.0.0.0</AssemblyVersion>
<AssemblyVersion>11.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>TSelf</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="value" Type="TSelf" />
<Parameter Name="rotateAmount" Type="System.Int32" />
</Parameters>
<Docs>
<param name="value">The value that is rotated right by <paramref name="rotateAmount" />.</param>
<param name="rotateAmount">The amount by which <paramref name="value" /> is rotated right.</param>
<summary>Rotates a value right by a given amount.</summary>
<returns>The result of rotating <paramref name="value" /> right by <paramref name="rotateAmount" />.</returns>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="TrailingZeroCount">
<MemberSignature Language="C#" Value="public static abstract TSelf TrailingZeroCount (TSelf value);" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig virtual !TSelf TrailingZeroCount(!TSelf value) cil managed" />
<MemberSignature Language="DocId" Value="M:System.Numerics.IBinaryInteger`1.TrailingZeroCount(`0)" />
<MemberSignature Language="VB.NET" Value="Public Shared Function TrailingZeroCount (value As TSelf) As TSelf" />
<MemberSignature Language="F#" Value="static member TrailingZeroCount : 'Self -> 'Self" Usage="System.Numerics.IBinaryInteger<'Self (requires 'Self :> System.Numerics.IBinaryInteger<'Self>)>.TrailingZeroCount value" />
<MemberSignature Language="C++ CLI" Value="public:
 static TSelf TrailingZeroCount(TSelf value);" />
<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>
<AssemblyVersion>10.0.0.0</AssemblyVersion>
<AssemblyVersion>11.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>TSelf</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="value" Type="TSelf" />
</Parameters>
<Docs>
<param name="value">The value whose trailing zero bits are to be counted.</param>
<summary>Computes the number of trailing zero bits in a value.</summary>
<returns>The number of trailing zero bits in <paramref name="value" />.</returns>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="TryReadBigEndian">
<MemberSignature Language="C#" Value="public static abstract bool TryReadBigEndian (ReadOnlySpan<byte> source, bool isUnsigned, out TSelf value);" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig virtual bool TryReadBigEndian(valuetype System.ReadOnlySpan`1<unsigned int8> source, bool isUnsigned, [out] !TSelf& value) cil managed" />
<MemberSignature Language="DocId" Value="M:System.Numerics.IBinaryInteger`1.TryReadBigEndian(System.ReadOnlySpan{System.Byte},System.Boolean,`0@)" />
<MemberSignature Language="VB.NET" Value="Public Shared Function TryReadBigEndian (source As ReadOnlySpan(Of Byte), isUnsigned As Boolean, ByRef value As TSelf) As Boolean" />
<MemberSignature Language="F#" Value="static member TryReadBigEndian : ReadOnlySpan<byte> * bool * 'Self -> bool" Usage="System.Numerics.IBinaryInteger<'Self (requires 'Self :> System.Numerics.IBinaryInteger<'Self>)>.TryReadBigEndian (source, isUnsigned, value)" />
<MemberSignature Language="C++ CLI" Value="public:
 static bool TryReadBigEndian(ReadOnlySpan<System::Byte> source, bool isUnsigned, [Runtime::InteropServices::Out] TSelf % value);" />
<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>
<AssemblyVersion>10.0.0.0</AssemblyVersion>
<AssemblyVersion>11.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Boolean</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="source" Type="System.ReadOnlySpan<System.Byte>" />
<Parameter Name="isUnsigned" Type="System.Boolean" />
<Parameter Name="value" Type="TSelf" RefType="out">
<Attributes>
<Attribute FrameworkAlternate="net-10.0;net-11.0;net-8.0;net-9.0">
<AttributeName Language="C#">[System.Runtime.CompilerServices.Nullable(1)]</AttributeName>
<AttributeName Language="F#">[<System.Runtime.CompilerServices.Nullable(1)>]</AttributeName>
</Attribute>
</Attributes>
</Parameter>
</Parameters>
<Docs>
<param name="source">The span from which the two's complement number should be read.</param>
<param name="isUnsigned">
<see langword="true" /> if <paramref name="source" /> represents an unsigned two's complement number; otherwise, <see langword="false" /> to indicate it represents a signed two's complement number.</param>
<param name="value">On return, contains the value read from <paramref name="source" /> or <see langword="default" /> if a value could not be read.</param>
<summary>Tries to read a two's complement number from a span, in big-endian format, and convert it to an instance of the current type.</summary>
<returns>
<see langword="true" /> if the value was successfully read from <paramref name="source" />; otherwise, <see langword="false" />.</returns>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="TryReadLittleEndian">
<MemberSignature Language="C#" Value="public static abstract bool TryReadLittleEndian (ReadOnlySpan<byte> source, bool isUnsigned, out TSelf value);" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig virtual bool TryReadLittleEndian(valuetype System.ReadOnlySpan`1<unsigned int8> source, bool isUnsigned, [out] !TSelf& value) cil managed" />
<MemberSignature Language="DocId" Value="M:System.Numerics.IBinaryInteger`1.TryReadLittleEndian(System.ReadOnlySpan{System.Byte},System.Boolean,`0@)" />
<MemberSignature Language="VB.NET" Value="Public Shared Function TryReadLittleEndian (source As ReadOnlySpan(Of Byte), isUnsigned As Boolean, ByRef value As TSelf) As Boolean" />
<MemberSignature Language="F#" Value="static member TryReadLittleEndian : ReadOnlySpan<byte> * bool * 'Self -> bool" Usage="System.Numerics.IBinaryInteger<'Self (requires 'Self :> System.Numerics.IBinaryInteger<'Self>)>.TryReadLittleEndian (source, isUnsigned, value)" />
<MemberSignature Language="C++ CLI" Value="public:
 static bool TryReadLittleEndian(ReadOnlySpan<System::Byte> source, bool isUnsigned, [Runtime::InteropServices::Out] TSelf % value);" />
<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>
<AssemblyVersion>10.0.0.0</AssemblyVersion>
<AssemblyVersion>11.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Boolean</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="source" Type="System.ReadOnlySpan<System.Byte>" />
<Parameter Name="isUnsigned" Type="System.Boolean" />
<Parameter Name="value" Type="TSelf" RefType="out">
<Attributes>
<Attribute FrameworkAlternate="net-10.0;net-11.0;net-8.0;net-9.0">
<AttributeName Language="C#">[System.Runtime.CompilerServices.Nullable(1)]</AttributeName>
<AttributeName Language="F#">[<System.Runtime.CompilerServices.Nullable(1)>]</AttributeName>
</Attribute>
</Attributes>
</Parameter>
</Parameters>
<Docs>
<param name="source">The span from which the two's complement number should be read.</param>
<param name="isUnsigned">
<see langword="true" /> if <paramref name="source" /> represents an unsigned two's complement number; otherwise, <see langword="false" /> to indicate it represents a signed two's complement number.</param>
<param name="value">On return, contains the value read from <paramref name="source" /> or <see langword="default" /> if a value could not be read.</param>
<summary>Tries to read a two's complement number from a span, in little-endian format, and convert it to an instance of the current type.</summary>
<returns>
<see langword="true" /> if the value was successfully read from <paramref name="source" />; otherwise, <see langword="false" />.</returns>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="TryWriteBigEndian">
<MemberSignature Language="C#" Value="public bool TryWriteBigEndian (Span<byte> destination, out int bytesWritten);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance bool TryWriteBigEndian(valuetype System.Span`1<unsigned int8> destination, [out] int32& bytesWritten) cil managed" />
<MemberSignature Language="DocId" Value="M:System.Numerics.IBinaryInteger`1.TryWriteBigEndian(System.Span{System.Byte},System.Int32@)" />
<MemberSignature Language="VB.NET" Value="Public Function TryWriteBigEndian (destination As Span(Of Byte), ByRef bytesWritten As Integer) As Boolean" />
<MemberSignature Language="F#" Value="abstract member TryWriteBigEndian : Span<byte> * int -> bool" Usage="iBinaryInteger.TryWriteBigEndian (destination, bytesWritten)" />
<MemberSignature Language="C++ CLI" Value="public:
 bool TryWriteBigEndian(Span<System::Byte> destination, [Runtime::InteropServices::Out] int % bytesWritten);" />
<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>
<AssemblyVersion>10.0.0.0</AssemblyVersion>
<AssemblyVersion>11.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Boolean</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="destination" Type="System.Span<System.Byte>" />
<Parameter Name="bytesWritten" Type="System.Int32" RefType="out" />
</Parameters>
<Docs>
<param name="destination">The span to which the current value should be written.</param>
<param name="bytesWritten">When this method returns, contains the number of bytes written to <paramref name="destination" />.</param>
<summary>Tries to write the current value, in big-endian format, to a given span.</summary>
<returns>
<see langword="true" /> if the value was successfully written to <paramref name="destination" />; otherwise, <see langword="false" />.</returns>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="TryWriteLittleEndian">
<MemberSignature Language="C#" Value="public bool TryWriteLittleEndian (Span<byte> destination, out int bytesWritten);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance bool TryWriteLittleEndian(valuetype System.Span`1<unsigned int8> destination, [out] int32& bytesWritten) cil managed" />
<MemberSignature Language="DocId" Value="M:System.Numerics.IBinaryInteger`1.TryWriteLittleEndian(System.Span{System.Byte},System.Int32@)" />
<MemberSignature Language="VB.NET" Value="Public Function TryWriteLittleEndian (destination As Span(Of Byte), ByRef bytesWritten As Integer) As Boolean" />
<MemberSignature Language="F#" Value="abstract member TryWriteLittleEndian : Span<byte> * int -> bool" Usage="iBinaryInteger.TryWriteLittleEndian (destination, bytesWritten)" />
<MemberSignature Language="C++ CLI" Value="public:
 bool TryWriteLittleEndian(Span<System::Byte> destination, [Runtime::InteropServices::Out] int % bytesWritten);" />
<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>
<AssemblyVersion>10.0.0.0</AssemblyVersion>
<AssemblyVersion>11.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Boolean</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="destination" Type="System.Span<System.Byte>" />
<Parameter Name="bytesWritten" Type="System.Int32" RefType="out" />
</Parameters>
<Docs>
<param name="destination">The span to which the current value should be written.</param>
<param name="bytesWritten">When this method returns, contains the number of bytes written to <paramref name="destination" />.</param>
<summary>Tries to write the current value, in little-endian format, to a given span.</summary>
<returns>
<see langword="true" /> if the value was successfully written to <paramref name="destination" />; otherwise, <see langword="false" />.</returns>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="WriteBigEndian">
<MemberSignature Language="C#" Value="public virtual int WriteBigEndian (byte[] destination);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance int32 WriteBigEndian(unsigned int8[] destination) cil managed" />
<MemberSignature Language="DocId" Value="M:System.Numerics.IBinaryInteger`1.WriteBigEndian(System.Byte[])" />
<MemberSignature Language="VB.NET" Value="Public Overridable Function WriteBigEndian (destination As Byte()) As Integer" />
<MemberSignature Language="F#" Value="abstract member WriteBigEndian : byte[] -> int
override this.WriteBigEndian : byte[] -> int" Usage="iBinaryInteger.WriteBigEndian destination" />
<MemberSignature Language="C++ CLI" Value="public:
 virtual int WriteBigEndian(cli::array <System::Byte> ^ destination);" />
<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>
<AssemblyVersion>10.0.0.0</AssemblyVersion>
<AssemblyVersion>11.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Int32</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="destination" Type="System.Byte[]" />
</Parameters>
<Docs>
<param name="destination">The array to which the current value should be written.</param>
<summary>Writes the current value, in big-endian format, to a given array.</summary>
<returns>The number of bytes written to <paramref name="destination" />.</returns>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="WriteBigEndian">
<MemberSignature Language="C#" Value="public virtual int WriteBigEndian (Span<byte> destination);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance int32 WriteBigEndian(valuetype System.Span`1<unsigned int8> destination) cil managed" />
<MemberSignature Language="DocId" Value="M:System.Numerics.IBinaryInteger`1.WriteBigEndian(System.Span{System.Byte})" />
<MemberSignature Language="VB.NET" Value="Public Overridable Function WriteBigEndian (destination As Span(Of Byte)) As Integer" />
<MemberSignature Language="F#" Value="abstract member WriteBigEndian : Span<byte> -> int
override this.WriteBigEndian : Span<byte> -> int" Usage="iBinaryInteger.WriteBigEndian destination" />
<MemberSignature Language="C++ CLI" Value="public:
 virtual int WriteBigEndian(Span<System::Byte> destination);" />
<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>
<AssemblyVersion>10.0.0.0</AssemblyVersion>
<AssemblyVersion>11.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Int32</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="destination" Type="System.Span<System.Byte>" />
</Parameters>
<Docs>
<param name="destination">The span to which the current value should be written.</param>
<summary>Writes the current value, in big-endian format, to a given span.</summary>
<returns>The number of bytes written to <paramref name="destination" />.</returns>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="WriteBigEndian">
<MemberSignature Language="C#" Value="public virtual int WriteBigEndian (byte[] destination, int startIndex);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance int32 WriteBigEndian(unsigned int8[] destination, int32 startIndex) cil managed" />
<MemberSignature Language="DocId" Value="M:System.Numerics.IBinaryInteger`1.WriteBigEndian(System.Byte[],System.Int32)" />
<MemberSignature Language="VB.NET" Value="Public Overridable Function WriteBigEndian (destination As Byte(), startIndex As Integer) As Integer" />
<MemberSignature Language="F#" Value="abstract member WriteBigEndian : byte[] * int -> int
override this.WriteBigEndian : byte[] * int -> int" Usage="iBinaryInteger.WriteBigEndian (destination, startIndex)" />
<MemberSignature Language="C++ CLI" Value="public:
 virtual int WriteBigEndian(cli::array <System::Byte> ^ destination, int startIndex);" />
<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>
<AssemblyVersion>10.0.0.0</AssemblyVersion>
<AssemblyVersion>11.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Int32</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="destination" Type="System.Byte[]" />
<Parameter Name="startIndex" Type="System.Int32" />
</Parameters>
<Docs>
<param name="destination">The array to which the current value should be written.</param>
<param name="startIndex">The starting index at which the value should be written.</param>
<summary>Writes the current value, in big-endian format, to a given array.</summary>
<returns>The number of bytes written to <paramref name="destination" /> starting at <paramref name="startIndex" />.</returns>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="WriteLittleEndian">
<MemberSignature Language="C#" Value="public virtual int WriteLittleEndian (byte[] destination);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance int32 WriteLittleEndian(unsigned int8[] destination) cil managed" />
<MemberSignature Language="DocId" Value="M:System.Numerics.IBinaryInteger`1.WriteLittleEndian(System.Byte[])" />
<MemberSignature Language="VB.NET" Value="Public Overridable Function WriteLittleEndian (destination As Byte()) As Integer" />
<MemberSignature Language="F#" Value="abstract member WriteLittleEndian : byte[] -> int
override this.WriteLittleEndian : byte[] -> int" Usage="iBinaryInteger.WriteLittleEndian destination" />
<MemberSignature Language="C++ CLI" Value="public:
 virtual int WriteLittleEndian(cli::array <System::Byte> ^ destination);" />
<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>
<AssemblyVersion>10.0.0.0</AssemblyVersion>
<AssemblyVersion>11.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Int32</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="destination" Type="System.Byte[]" />
</Parameters>
<Docs>
<param name="destination">The array to which the current value should be written.</param>
<summary>Writes the current value, in little-endian format, to a given array.</summary>
<returns>The number of bytes written to <paramref name="destination" />.</returns>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="WriteLittleEndian">
<MemberSignature Language="C#" Value="public virtual int WriteLittleEndian (Span<byte> destination);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance int32 WriteLittleEndian(valuetype System.Span`1<unsigned int8> destination) cil managed" />
<MemberSignature Language="DocId" Value="M:System.Numerics.IBinaryInteger`1.WriteLittleEndian(System.Span{System.Byte})" />
<MemberSignature Language="VB.NET" Value="Public Overridable Function WriteLittleEndian (destination As Span(Of Byte)) As Integer" />
<MemberSignature Language="F#" Value="abstract member WriteLittleEndian : Span<byte> -> int
override this.WriteLittleEndian : Span<byte> -> int" Usage="iBinaryInteger.WriteLittleEndian destination" />
<MemberSignature Language="C++ CLI" Value="public:
 virtual int WriteLittleEndian(Span<System::Byte> destination);" />
<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>
<AssemblyVersion>10.0.0.0</AssemblyVersion>
<AssemblyVersion>11.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Int32</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="destination" Type="System.Span<System.Byte>" />
</Parameters>
<Docs>
<param name="destination">The span to which the current value should be written.</param>
<summary>Writes the current value, in little-endian format, to a given span.</summary>
<returns>The number of bytes written to <paramref name="destination" />.</returns>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="WriteLittleEndian">
<MemberSignature Language="C#" Value="public virtual int WriteLittleEndian (byte[] destination, int startIndex);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance int32 WriteLittleEndian(unsigned int8[] destination, int32 startIndex) cil managed" />
<MemberSignature Language="DocId" Value="M:System.Numerics.IBinaryInteger`1.WriteLittleEndian(System.Byte[],System.Int32)" />
<MemberSignature Language="VB.NET" Value="Public Overridable Function WriteLittleEndian (destination As Byte(), startIndex As Integer) As Integer" />
<MemberSignature Language="F#" Value="abstract member WriteLittleEndian : byte[] * int -> int
override this.WriteLittleEndian : byte[] * int -> int" Usage="iBinaryInteger.WriteLittleEndian (destination, startIndex)" />
<MemberSignature Language="C++ CLI" Value="public:
 virtual int WriteLittleEndian(cli::array <System::Byte> ^ destination, int startIndex);" />
<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>
<AssemblyVersion>10.0.0.0</AssemblyVersion>
<AssemblyVersion>11.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Int32</ReturnType>