-
Notifications
You must be signed in to change notification settings - Fork 1.6k
/
Copy pathINumberBase`1.xml
1902 lines (1852 loc) · 133 KB
/
INumberBase`1.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="INumberBase<TSelf>" FullName="System.Numerics.INumberBase<TSelf>">
<TypeSignature Language="C#" Value="public interface INumberBase<TSelf> : IEquatable<TSelf>, IParsable<TSelf>, ISpanFormattable, ISpanParsable<TSelf>, IUtf8SpanFormattable, IUtf8SpanParsable<TSelf>, System.Numerics.IAdditionOperators<TSelf,TSelf,TSelf>, System.Numerics.IAdditiveIdentity<TSelf,TSelf>, System.Numerics.IDecrementOperators<TSelf>, System.Numerics.IDivisionOperators<TSelf,TSelf,TSelf>, System.Numerics.IEqualityOperators<TSelf,TSelf,bool>, System.Numerics.IIncrementOperators<TSelf>, System.Numerics.IMultiplicativeIdentity<TSelf,TSelf>, System.Numerics.IMultiplyOperators<TSelf,TSelf,TSelf>, System.Numerics.ISubtractionOperators<TSelf,TSelf,TSelf>, System.Numerics.IUnaryNegationOperators<TSelf,TSelf>, System.Numerics.IUnaryPlusOperators<TSelf,TSelf> where TSelf : INumberBase<TSelf>" FrameworkAlternate="net-10.0;net-8.0;net-9.0" />
<TypeSignature Language="ILAsm" Value=".class public interface auto ansi abstract beforefieldinit INumberBase`1<(class System.Numerics.INumberBase`1<!TSelf>) TSelf> implements 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.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.IMultiplicativeIdentity`2<!TSelf, !TSelf>, class System.Numerics.IMultiplyOperators`3<!TSelf, !TSelf, !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-8.0;net-9.0" />
<TypeSignature Language="DocId" Value="T:System.Numerics.INumberBase`1" />
<TypeSignature Language="VB.NET" Value="Public Interface INumberBase(Of TSelf)
Implements IAdditionOperators(Of TSelf, TSelf, TSelf), IAdditiveIdentity(Of TSelf, TSelf), IDecrementOperators(Of TSelf), IDivisionOperators(Of TSelf, TSelf, TSelf), IEqualityOperators(Of TSelf, TSelf, Boolean), IEquatable(Of TSelf), IIncrementOperators(Of TSelf), IMultiplicativeIdentity(Of TSelf, TSelf), IMultiplyOperators(Of TSelf, TSelf, TSelf), IParsable(Of TSelf), ISpanFormattable, ISpanParsable(Of TSelf), ISubtractionOperators(Of TSelf, TSelf, TSelf), IUnaryNegationOperators(Of TSelf, TSelf), IUnaryPlusOperators(Of TSelf, TSelf), IUtf8SpanFormattable, IUtf8SpanParsable(Of TSelf)" FrameworkAlternate="net-10.0;net-8.0;net-9.0" />
<TypeSignature Language="F#" Value="type INumberBase<'Self (requires 'Self :> INumberBase<'Self>)> = interface
 interface IEquatable<'Self (requires 'Self :> INumberBase<'Self>)>
 interface IFormattable
 interface IParsable<'Self (requires 'Self :> INumberBase<'Self>)>
 interface ISpanFormattable
 interface ISpanParsable<'Self (requires 'Self :> INumberBase<'Self>)>
 interface IUtf8SpanFormattable
 interface IUtf8SpanParsable<'Self (requires 'Self :> INumberBase<'Self>)>
 interface IAdditionOperators<'Self, 'Self, 'Self (requires 'Self :> INumberBase<'Self> and 'Self :> INumberBase<'Self> and 'Self :> INumberBase<'Self>)>
 interface IAdditiveIdentity<'Self, 'Self (requires 'Self :> INumberBase<'Self> and 'Self :> INumberBase<'Self>)>
 interface IDecrementOperators<'Self (requires 'Self :> INumberBase<'Self>)>
 interface IDivisionOperators<'Self, 'Self, 'Self (requires 'Self :> INumberBase<'Self> and 'Self :> INumberBase<'Self> and 'Self :> INumberBase<'Self>)>
 interface IEqualityOperators<'Self, 'Self, bool (requires 'Self :> INumberBase<'Self> and 'Self :> INumberBase<'Self>)>
 interface IIncrementOperators<'Self (requires 'Self :> INumberBase<'Self>)>
 interface IMultiplicativeIdentity<'Self, 'Self (requires 'Self :> INumberBase<'Self> and 'Self :> INumberBase<'Self>)>
 interface IMultiplyOperators<'Self, 'Self, 'Self (requires 'Self :> INumberBase<'Self> and 'Self :> INumberBase<'Self> and 'Self :> INumberBase<'Self>)>
 interface ISubtractionOperators<'Self, 'Self, 'Self (requires 'Self :> INumberBase<'Self> and 'Self :> INumberBase<'Self> and 'Self :> INumberBase<'Self>)>
 interface IUnaryNegationOperators<'Self, 'Self (requires 'Self :> INumberBase<'Self> and 'Self :> INumberBase<'Self>)>
 interface IUnaryPlusOperators<'Self, 'Self (requires 'Self :> INumberBase<'Self> and 'Self :> INumberBase<'Self>)>" FrameworkAlternate="net-10.0;net-9.0" />
<TypeSignature Language="C++ CLI" Value="generic <typename TSelf>
 where TSelf : INumberBase<TSelf>public interface class INumberBase : IEquatable<TSelf>, IParsable<TSelf>, ISpanFormattable, ISpanParsable<TSelf>, IUtf8SpanFormattable, IUtf8SpanParsable<TSelf>, System::Numerics::IAdditionOperators<TSelf, TSelf, TSelf>, System::Numerics::IAdditiveIdentity<TSelf, TSelf>, System::Numerics::IDecrementOperators<TSelf>, System::Numerics::IDivisionOperators<TSelf, TSelf, TSelf>, System::Numerics::IEqualityOperators<TSelf, TSelf, bool>, System::Numerics::IIncrementOperators<TSelf>, System::Numerics::IMultiplicativeIdentity<TSelf, TSelf>, System::Numerics::IMultiplyOperators<TSelf, TSelf, TSelf>, System::Numerics::ISubtractionOperators<TSelf, TSelf, TSelf>, System::Numerics::IUnaryNegationOperators<TSelf, TSelf>, System::Numerics::IUnaryPlusOperators<TSelf, TSelf>" FrameworkAlternate="net-10.0;net-8.0;net-9.0" />
<TypeSignature Language="C#" Value="public interface INumberBase<TSelf> : IEquatable<TSelf>, IParsable<TSelf>, ISpanFormattable, ISpanParsable<TSelf>, System.Numerics.IAdditionOperators<TSelf,TSelf,TSelf>, System.Numerics.IAdditiveIdentity<TSelf,TSelf>, System.Numerics.IDecrementOperators<TSelf>, System.Numerics.IDivisionOperators<TSelf,TSelf,TSelf>, System.Numerics.IEqualityOperators<TSelf,TSelf,bool>, System.Numerics.IIncrementOperators<TSelf>, System.Numerics.IMultiplicativeIdentity<TSelf,TSelf>, System.Numerics.IMultiplyOperators<TSelf,TSelf,TSelf>, System.Numerics.ISubtractionOperators<TSelf,TSelf,TSelf>, System.Numerics.IUnaryNegationOperators<TSelf,TSelf>, System.Numerics.IUnaryPlusOperators<TSelf,TSelf> where TSelf : INumberBase<TSelf>" FrameworkAlternate="net-7.0" />
<TypeSignature Language="ILAsm" Value=".class public interface auto ansi abstract INumberBase`1<(class System.Numerics.INumberBase`1<!TSelf>) TSelf> implements 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.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.IMultiplicativeIdentity`2<!TSelf, !TSelf>, class System.Numerics.IMultiplyOperators`3<!TSelf, !TSelf, !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 INumberBase(Of TSelf)
Implements IAdditionOperators(Of TSelf, TSelf, TSelf), IAdditiveIdentity(Of TSelf, TSelf), IDecrementOperators(Of TSelf), IDivisionOperators(Of TSelf, TSelf, TSelf), IEqualityOperators(Of TSelf, TSelf, Boolean), IEquatable(Of TSelf), IIncrementOperators(Of TSelf), IMultiplicativeIdentity(Of TSelf, TSelf), IMultiplyOperators(Of TSelf, TSelf, TSelf), IParsable(Of TSelf), ISpanFormattable, 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 INumberBase<'Self (requires 'Self :> INumberBase<'Self>)> = interface
 interface IEquatable<'Self (requires 'Self :> INumberBase<'Self>)>
 interface IFormattable
 interface IParsable<'Self (requires 'Self :> INumberBase<'Self>)>
 interface ISpanFormattable
 interface ISpanParsable<'Self (requires 'Self :> INumberBase<'Self>)>
 interface IAdditionOperators<'Self, 'Self, 'Self (requires 'Self :> INumberBase<'Self> and 'Self :> INumberBase<'Self> and 'Self :> INumberBase<'Self>)>
 interface IAdditiveIdentity<'Self, 'Self (requires 'Self :> INumberBase<'Self> and 'Self :> INumberBase<'Self>)>
 interface IDecrementOperators<'Self (requires 'Self :> INumberBase<'Self>)>
 interface IDivisionOperators<'Self, 'Self, 'Self (requires 'Self :> INumberBase<'Self> and 'Self :> INumberBase<'Self> and 'Self :> INumberBase<'Self>)>
 interface IEqualityOperators<'Self, 'Self, bool (requires 'Self :> INumberBase<'Self> and 'Self :> INumberBase<'Self>)>
 interface IIncrementOperators<'Self (requires 'Self :> INumberBase<'Self>)>
 interface IMultiplicativeIdentity<'Self, 'Self (requires 'Self :> INumberBase<'Self> and 'Self :> INumberBase<'Self>)>
 interface IMultiplyOperators<'Self, 'Self, 'Self (requires 'Self :> INumberBase<'Self> and 'Self :> INumberBase<'Self> and 'Self :> INumberBase<'Self>)>
 interface ISubtractionOperators<'Self, 'Self, 'Self (requires 'Self :> INumberBase<'Self> and 'Self :> INumberBase<'Self> and 'Self :> INumberBase<'Self>)>
 interface IUnaryNegationOperators<'Self, 'Self (requires 'Self :> INumberBase<'Self> and 'Self :> INumberBase<'Self>)>
 interface IUnaryPlusOperators<'Self, 'Self (requires 'Self :> INumberBase<'Self> and 'Self :> INumberBase<'Self>)>" FrameworkAlternate="net-7.0" />
<TypeSignature Language="C++ CLI" Value="generic <typename TSelf>
 where TSelf : INumberBase<TSelf>public interface class INumberBase : IEquatable<TSelf>, IParsable<TSelf>, ISpanFormattable, ISpanParsable<TSelf>, System::Numerics::IAdditionOperators<TSelf, TSelf, TSelf>, System::Numerics::IAdditiveIdentity<TSelf, TSelf>, System::Numerics::IDecrementOperators<TSelf>, System::Numerics::IDivisionOperators<TSelf, TSelf, TSelf>, System::Numerics::IEqualityOperators<TSelf, TSelf, bool>, System::Numerics::IIncrementOperators<TSelf>, System::Numerics::IMultiplicativeIdentity<TSelf, TSelf>, System::Numerics::IMultiplyOperators<TSelf, TSelf, 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 INumberBase<'Self (requires 'Self :> INumberBase<'Self>)> = interface
 interface IEquatable<'Self (requires 'Self :> INumberBase<'Self>)>
 interface IFormattable
 interface IParsable<'Self (requires 'Self :> INumberBase<'Self>)>
 interface ISpanFormattable
 interface ISpanParsable<'Self (requires 'Self :> INumberBase<'Self>)>
 interface IAdditionOperators<'Self, 'Self, 'Self (requires 'Self :> INumberBase<'Self> and 'Self :> INumberBase<'Self> and 'Self :> INumberBase<'Self>)>
 interface IAdditiveIdentity<'Self, 'Self (requires 'Self :> INumberBase<'Self> and 'Self :> INumberBase<'Self>)>
 interface IDecrementOperators<'Self (requires 'Self :> INumberBase<'Self>)>
 interface IDivisionOperators<'Self, 'Self, 'Self (requires 'Self :> INumberBase<'Self> and 'Self :> INumberBase<'Self> and 'Self :> INumberBase<'Self>)>
 interface IEqualityOperators<'Self, 'Self, bool (requires 'Self :> INumberBase<'Self> and 'Self :> INumberBase<'Self>)>
 interface IIncrementOperators<'Self (requires 'Self :> INumberBase<'Self>)>
 interface IMultiplicativeIdentity<'Self, 'Self (requires 'Self :> INumberBase<'Self> and 'Self :> INumberBase<'Self>)>
 interface IMultiplyOperators<'Self, 'Self, 'Self (requires 'Self :> INumberBase<'Self> and 'Self :> INumberBase<'Self> and 'Self :> INumberBase<'Self>)>
 interface ISubtractionOperators<'Self, 'Self, 'Self (requires 'Self :> INumberBase<'Self> and 'Self :> INumberBase<'Self> and 'Self :> INumberBase<'Self>)>
 interface IUnaryNegationOperators<'Self, 'Self (requires 'Self :> INumberBase<'Self> and 'Self :> INumberBase<'Self>)>
 interface IUnaryPlusOperators<'Self, 'Self (requires 'Self :> INumberBase<'Self> and 'Self :> INumberBase<'Self>)>
 interface IUtf8SpanFormattable
 interface IUtf8SpanParsable<'Self (requires 'Self :> INumberBase<'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>
</AssemblyInfo>
<TypeParameters>
<TypeParameter Name="TSelf">
<Attributes>
<Attribute FrameworkAlternate="net-10.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.INumberBase<TSelf></InterfaceName>
</Constraints>
</TypeParameter>
</TypeParameters>
<Interfaces>
<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-8.0;net-9.0">
<InterfaceName>System.IUtf8SpanFormattable</InterfaceName>
</Interface>
<Interface FrameworkAlternate="net-10.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.IDecrementOperators<TSelf></InterfaceName>
</Interface>
<Interface>
<InterfaceName>System.Numerics.IDivisionOperators<TSelf,TSelf,TSelf></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.IMultiplicativeIdentity<TSelf,TSelf></InterfaceName>
</Interface>
<Interface>
<InterfaceName>System.Numerics.IMultiplyOperators<TSelf,TSelf,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 the base of other number types.</summary>
<remarks>To be added.</remarks>
</Docs>
<Members>
<Member MemberName="Abs">
<MemberSignature Language="C#" Value="public static abstract TSelf Abs (TSelf value);" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig virtual !TSelf Abs(!TSelf value) cil managed" />
<MemberSignature Language="DocId" Value="M:System.Numerics.INumberBase`1.Abs(`0)" />
<MemberSignature Language="VB.NET" Value="Public Shared Function Abs (value As TSelf) As TSelf" />
<MemberSignature Language="F#" Value="static member Abs : 'Self -> 'Self" Usage="System.Numerics.INumberBase<'Self (requires 'Self :> System.Numerics.INumberBase<'Self>)>.Abs value" />
<MemberSignature Language="C++ CLI" Value="public:
 static TSelf Abs(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>
</AssemblyInfo>
<ReturnValue>
<ReturnType>TSelf</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="value" Type="TSelf" />
</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>
<exception cref="T:System.OverflowException">The absolute of <paramref name="value" /> is not representable by <typeparamref name="TSelf" />.</exception>
</Docs>
</Member>
<Member MemberName="CreateChecked<TOther>">
<MemberSignature Language="C#" Value="public static virtual TSelf CreateChecked<TOther> (TOther value) where TOther : System.Numerics.INumberBase<TOther>;" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig virtual !TSelf CreateChecked<(class System.Numerics.INumberBase`1<!!TOther>) TOther>(!!TOther value) cil managed" />
<MemberSignature Language="DocId" Value="M:System.Numerics.INumberBase`1.CreateChecked``1(``0)" />
<MemberSignature Language="VB.NET" Value="Public Shared Overrides Function CreateChecked(Of TOther As INumberBase(Of TOther)) (value As TOther) As TSelf" />
<MemberSignature Language="F#" Value="static member CreateChecked : 'Other -> 'Self (requires 'Other :> System.Numerics.INumberBase<'Other>)" Usage="System.Numerics.INumberBase<'Self (requires 'Self :> System.Numerics.INumberBase<'Self>)>.CreateChecked value" />
<MemberSignature Language="C++ CLI" Value="public:
generic <typename TOther>
 where TOther : System::Numerics::INumberBase<TOther> static override TSelf CreateChecked(TOther 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>
</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>
<TypeParameters>
<TypeParameter Name="TOther">
<Constraints>
<InterfaceName>System.Numerics.INumberBase<TOther></InterfaceName>
</Constraints>
</TypeParameter>
</TypeParameters>
<Parameters>
<Parameter Name="value" Type="TOther">
<Attributes>
<Attribute FrameworkAlternate="net-10.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>
<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>
<exception cref="T:System.NotSupportedException">
<typeparamref name="TOther" /> is not supported.</exception>
<exception cref="T:System.OverflowException">
<paramref name="value" /> is not representable by <typeparamref name="TSelf" />.</exception>
</Docs>
</Member>
<Member MemberName="CreateSaturating<TOther>">
<MemberSignature Language="C#" Value="public static virtual TSelf CreateSaturating<TOther> (TOther value) where TOther : System.Numerics.INumberBase<TOther>;" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig virtual !TSelf CreateSaturating<(class System.Numerics.INumberBase`1<!!TOther>) TOther>(!!TOther value) cil managed" />
<MemberSignature Language="DocId" Value="M:System.Numerics.INumberBase`1.CreateSaturating``1(``0)" />
<MemberSignature Language="VB.NET" Value="Public Shared Overrides Function CreateSaturating(Of TOther As INumberBase(Of TOther)) (value As TOther) As TSelf" />
<MemberSignature Language="F#" Value="static member CreateSaturating : 'Other -> 'Self (requires 'Other :> System.Numerics.INumberBase<'Other>)" Usage="System.Numerics.INumberBase<'Self (requires 'Self :> System.Numerics.INumberBase<'Self>)>.CreateSaturating value" />
<MemberSignature Language="C++ CLI" Value="public:
generic <typename TOther>
 where TOther : System::Numerics::INumberBase<TOther> static override TSelf CreateSaturating(TOther 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>
</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>
<TypeParameters>
<TypeParameter Name="TOther">
<Constraints>
<InterfaceName>System.Numerics.INumberBase<TOther></InterfaceName>
</Constraints>
</TypeParameter>
</TypeParameters>
<Parameters>
<Parameter Name="value" Type="TOther">
<Attributes>
<Attribute FrameworkAlternate="net-10.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>
<typeparam name="TOther">The type of <paramref name="value" />.</typeparam>
<param name="value">The value that 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>
<exception cref="T:System.NotSupportedException">
<typeparamref name="TOther" /> is not supported.</exception>
</Docs>
</Member>
<Member MemberName="CreateTruncating<TOther>">
<MemberSignature Language="C#" Value="public static virtual TSelf CreateTruncating<TOther> (TOther value) where TOther : System.Numerics.INumberBase<TOther>;" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig virtual !TSelf CreateTruncating<(class System.Numerics.INumberBase`1<!!TOther>) TOther>(!!TOther value) cil managed" />
<MemberSignature Language="DocId" Value="M:System.Numerics.INumberBase`1.CreateTruncating``1(``0)" />
<MemberSignature Language="VB.NET" Value="Public Shared Overrides Function CreateTruncating(Of TOther As INumberBase(Of TOther)) (value As TOther) As TSelf" />
<MemberSignature Language="F#" Value="static member CreateTruncating : 'Other -> 'Self (requires 'Other :> System.Numerics.INumberBase<'Other>)" Usage="System.Numerics.INumberBase<'Self (requires 'Self :> System.Numerics.INumberBase<'Self>)>.CreateTruncating value" />
<MemberSignature Language="C++ CLI" Value="public:
generic <typename TOther>
 where TOther : System::Numerics::INumberBase<TOther> static override TSelf CreateTruncating(TOther 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>
</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>
<TypeParameters>
<TypeParameter Name="TOther">
<Constraints>
<InterfaceName>System.Numerics.INumberBase<TOther></InterfaceName>
</Constraints>
</TypeParameter>
</TypeParameters>
<Parameters>
<Parameter Name="value" Type="TOther">
<Attributes>
<Attribute FrameworkAlternate="net-10.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>
<typeparam name="TOther">The type of <paramref name="value" />.</typeparam>
<param name="value">The value that 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>
<exception cref="T:System.NotSupportedException">
<typeparamref name="TOther" /> is not supported.</exception>
</Docs>
</Member>
<Member MemberName="IsCanonical">
<MemberSignature Language="C#" Value="public static abstract bool IsCanonical (TSelf value);" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig virtual bool IsCanonical(!TSelf value) cil managed" />
<MemberSignature Language="DocId" Value="M:System.Numerics.INumberBase`1.IsCanonical(`0)" />
<MemberSignature Language="VB.NET" Value="Public Shared Function IsCanonical (value As TSelf) As Boolean" />
<MemberSignature Language="F#" Value="static member IsCanonical : 'Self -> bool" Usage="System.Numerics.INumberBase<'Self (requires 'Self :> System.Numerics.INumberBase<'Self>)>.IsCanonical value" />
<MemberSignature Language="C++ CLI" Value="public:
 static bool IsCanonical(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>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Boolean</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="value" Type="TSelf" />
</Parameters>
<Docs>
<param name="value">The value to be checked.</param>
<summary>Determines if a value is in its canonical representation.</summary>
<returns>
<see langword="true" /> if <paramref name="value" /> is in its canonical representation; otherwise, <see langword="false" />.</returns>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="IsComplexNumber">
<MemberSignature Language="C#" Value="public static abstract bool IsComplexNumber (TSelf value);" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig virtual bool IsComplexNumber(!TSelf value) cil managed" />
<MemberSignature Language="DocId" Value="M:System.Numerics.INumberBase`1.IsComplexNumber(`0)" />
<MemberSignature Language="VB.NET" Value="Public Shared Function IsComplexNumber (value As TSelf) As Boolean" />
<MemberSignature Language="F#" Value="static member IsComplexNumber : 'Self -> bool" Usage="System.Numerics.INumberBase<'Self (requires 'Self :> System.Numerics.INumberBase<'Self>)>.IsComplexNumber value" />
<MemberSignature Language="C++ CLI" Value="public:
 static bool IsComplexNumber(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>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Boolean</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="value" Type="TSelf" />
</Parameters>
<Docs>
<param name="value">The value to be checked.</param>
<summary>Determines if a value represents a complex number.</summary>
<returns>
<see langword="true" /> if <paramref name="value" /> is a complex number; otherwise, <see langword="false" />.</returns>
<remarks>
<format type="text/markdown"><![CDATA[
## Remarks
This function returns `false` for a complex number `a + bi` where `a` or `b` is zero. In other words, it excludes real numbers and pure imaginary numbers.
]]></format>
</remarks>
</Docs>
</Member>
<Member MemberName="IsEvenInteger">
<MemberSignature Language="C#" Value="public static abstract bool IsEvenInteger (TSelf value);" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig virtual bool IsEvenInteger(!TSelf value) cil managed" />
<MemberSignature Language="DocId" Value="M:System.Numerics.INumberBase`1.IsEvenInteger(`0)" />
<MemberSignature Language="VB.NET" Value="Public Shared Function IsEvenInteger (value As TSelf) As Boolean" />
<MemberSignature Language="F#" Value="static member IsEvenInteger : 'Self -> bool" Usage="System.Numerics.INumberBase<'Self (requires 'Self :> System.Numerics.INumberBase<'Self>)>.IsEvenInteger value" />
<MemberSignature Language="C++ CLI" Value="public:
 static bool IsEvenInteger(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>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Boolean</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="value" Type="TSelf" />
</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>
</Docs>
</Member>
<Member MemberName="IsFinite">
<MemberSignature Language="C#" Value="public static abstract bool IsFinite (TSelf value);" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig virtual bool IsFinite(!TSelf value) cil managed" />
<MemberSignature Language="DocId" Value="M:System.Numerics.INumberBase`1.IsFinite(`0)" />
<MemberSignature Language="VB.NET" Value="Public Shared Function IsFinite (value As TSelf) As Boolean" />
<MemberSignature Language="F#" Value="static member IsFinite : 'Self -> bool" Usage="System.Numerics.INumberBase<'Self (requires 'Self :> System.Numerics.INumberBase<'Self>)>.IsFinite value" />
<MemberSignature Language="C++ CLI" Value="public:
 static bool IsFinite(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>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Boolean</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="value" Type="TSelf" />
</Parameters>
<Docs>
<param name="value">The value to be checked.</param>
<summary>Determines if a value is finite.</summary>
<returns>
<see langword="true" /> if <paramref name="value" /> is finite; 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.IsInfinity(%600)> will return `true`. `NaN` is not finite or infinite.
]]></format>
</remarks>
</Docs>
</Member>
<Member MemberName="IsImaginaryNumber">
<MemberSignature Language="C#" Value="public static abstract bool IsImaginaryNumber (TSelf value);" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig virtual bool IsImaginaryNumber(!TSelf value) cil managed" />
<MemberSignature Language="DocId" Value="M:System.Numerics.INumberBase`1.IsImaginaryNumber(`0)" />
<MemberSignature Language="VB.NET" Value="Public Shared Function IsImaginaryNumber (value As TSelf) As Boolean" />
<MemberSignature Language="F#" Value="static member IsImaginaryNumber : 'Self -> bool" Usage="System.Numerics.INumberBase<'Self (requires 'Self :> System.Numerics.INumberBase<'Self>)>.IsImaginaryNumber value" />
<MemberSignature Language="C++ CLI" Value="public:
 static bool IsImaginaryNumber(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>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Boolean</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="value" Type="TSelf" />
</Parameters>
<Docs>
<param name="value">The value to be checked.</param>
<summary>Determines if a value represents a pure imaginary number.</summary>
<returns>
<see langword="true" /> if <paramref name="value" /> is a pure imaginary number; otherwise, <see langword="false" />.</returns>
<remarks>
<format type="text/markdown"><![CDATA[
## Remarks
This function returns `false` for a complex number `a + bi` where `a` is non-zero, as that number is not purely imaginary.
]]></format>
</remarks>
</Docs>
</Member>
<Member MemberName="IsInfinity">
<MemberSignature Language="C#" Value="public static abstract bool IsInfinity (TSelf value);" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig virtual bool IsInfinity(!TSelf value) cil managed" />
<MemberSignature Language="DocId" Value="M:System.Numerics.INumberBase`1.IsInfinity(`0)" />
<MemberSignature Language="VB.NET" Value="Public Shared Function IsInfinity (value As TSelf) As Boolean" />
<MemberSignature Language="F#" Value="static member IsInfinity : 'Self -> bool" Usage="System.Numerics.INumberBase<'Self (requires 'Self :> System.Numerics.INumberBase<'Self>)>.IsInfinity value" />
<MemberSignature Language="C++ CLI" Value="public:
 static bool IsInfinity(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>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Boolean</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="value" Type="TSelf" />
</Parameters>
<Docs>
<param name="value">The value to be checked.</param>
<summary>Determines if a value is infinite.</summary>
<returns>
<see langword="true" /> if <paramref name="value" /> is infinite; 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.IsFinite(%600)> will return `true`. `NaN` is not finite or infinite.
]]></format>
</remarks>
</Docs>
</Member>
<Member MemberName="IsInteger">
<MemberSignature Language="C#" Value="public static abstract bool IsInteger (TSelf value);" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig virtual bool IsInteger(!TSelf value) cil managed" />
<MemberSignature Language="DocId" Value="M:System.Numerics.INumberBase`1.IsInteger(`0)" />
<MemberSignature Language="VB.NET" Value="Public Shared Function IsInteger (value As TSelf) As Boolean" />
<MemberSignature Language="F#" Value="static member IsInteger : 'Self -> bool" Usage="System.Numerics.INumberBase<'Self (requires 'Self :> System.Numerics.INumberBase<'Self>)>.IsInteger value" />
<MemberSignature Language="C++ CLI" Value="public:
 static bool IsInteger(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>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Boolean</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="value" Type="TSelf" />
</Parameters>
<Docs>
<param name="value">The value to be checked.</param>
<summary>Determines if a value represents an integral number.</summary>
<returns>
<see langword="true" /> if <paramref name="value" /> is an integer; otherwise, <see langword="false" />.</returns>
<remarks>
<format type="text/markdown"><![CDATA[
## Remarks
This method correctly handles floating-point values and so `2.0` and `3.0` will return `true` while `2.2` and `3.3` will return `false`.
]]></format>
</remarks>
</Docs>
</Member>
<Member MemberName="IsNaN">
<MemberSignature Language="C#" Value="public static abstract bool IsNaN (TSelf value);" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig virtual bool IsNaN(!TSelf value) cil managed" />
<MemberSignature Language="DocId" Value="M:System.Numerics.INumberBase`1.IsNaN(`0)" />
<MemberSignature Language="VB.NET" Value="Public Shared Function IsNaN (value As TSelf) As Boolean" />
<MemberSignature Language="F#" Value="static member IsNaN : 'Self -> bool" Usage="System.Numerics.INumberBase<'Self (requires 'Self :> System.Numerics.INumberBase<'Self>)>.IsNaN value" />
<MemberSignature Language="C++ CLI" Value="public:
 static bool IsNaN(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>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Boolean</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="value" Type="TSelf" />
</Parameters>
<Docs>
<param name="value">The value to be checked.</param>
<summary>Determines if a value is NaN.</summary>
<returns>
<see langword="true" /> if <paramref name="value" /> is NaN; otherwise, <see langword="false" />.</returns>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="IsNegative">
<MemberSignature Language="C#" Value="public static abstract bool IsNegative (TSelf value);" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig virtual bool IsNegative(!TSelf value) cil managed" />
<MemberSignature Language="DocId" Value="M:System.Numerics.INumberBase`1.IsNegative(`0)" />
<MemberSignature Language="VB.NET" Value="Public Shared Function IsNegative (value As TSelf) As Boolean" />
<MemberSignature Language="F#" Value="static member IsNegative : 'Self -> bool" Usage="System.Numerics.INumberBase<'Self (requires 'Self :> System.Numerics.INumberBase<'Self>)>.IsNegative value" />
<MemberSignature Language="C++ CLI" Value="public:
 static bool IsNegative(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>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Boolean</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="value" Type="TSelf" />
</Parameters>
<Docs>
<param name="value">The value to be checked.</param>
<summary>Determines if a value represents a negative real number.</summary>
<returns>
<see langword="true" /> if <paramref name="value" /> represents negative zero or a negative real number; otherwise, <see langword="false" />.</returns>
<remarks>
<format type="text/markdown"><![CDATA[
## Remarks
If this type has signed zero, then `-0` is also considered negative.
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>
</Docs>
</Member>
<Member MemberName="IsNegativeInfinity">
<MemberSignature Language="C#" Value="public static abstract bool IsNegativeInfinity (TSelf value);" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig virtual bool IsNegativeInfinity(!TSelf value) cil managed" />
<MemberSignature Language="DocId" Value="M:System.Numerics.INumberBase`1.IsNegativeInfinity(`0)" />
<MemberSignature Language="VB.NET" Value="Public Shared Function IsNegativeInfinity (value As TSelf) As Boolean" />
<MemberSignature Language="F#" Value="static member IsNegativeInfinity : 'Self -> bool" Usage="System.Numerics.INumberBase<'Self (requires 'Self :> System.Numerics.INumberBase<'Self>)>.IsNegativeInfinity value" />
<MemberSignature Language="C++ CLI" Value="public:
 static bool IsNegativeInfinity(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>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Boolean</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="value" Type="TSelf" />
</Parameters>
<Docs>
<param name="value">The value to be checked.</param>
<summary>Determines if a value is negative infinity.</summary>
<returns>
<see langword="true" /> if <paramref name="value" /> is negative infinity; otherwise, <see langword="false" />.</returns>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="IsNormal">
<MemberSignature Language="C#" Value="public static abstract bool IsNormal (TSelf value);" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig virtual bool IsNormal(!TSelf value) cil managed" />
<MemberSignature Language="DocId" Value="M:System.Numerics.INumberBase`1.IsNormal(`0)" />
<MemberSignature Language="VB.NET" Value="Public Shared Function IsNormal (value As TSelf) As Boolean" />
<MemberSignature Language="F#" Value="static member IsNormal : 'Self -> bool" Usage="System.Numerics.INumberBase<'Self (requires 'Self :> System.Numerics.INumberBase<'Self>)>.IsNormal value" />
<MemberSignature Language="C++ CLI" Value="public:
 static bool IsNormal(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>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Boolean</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="value" Type="TSelf" />
</Parameters>
<Docs>
<param name="value">The value to be checked.</param>
<summary>Determines if a value is normal.</summary>
<returns>
<see langword="true" /> if <paramref name="value" /> is normal; otherwise, <see langword="false" />.</returns>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="IsOddInteger">
<MemberSignature Language="C#" Value="public static abstract bool IsOddInteger (TSelf value);" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig virtual bool IsOddInteger(!TSelf value) cil managed" />
<MemberSignature Language="DocId" Value="M:System.Numerics.INumberBase`1.IsOddInteger(`0)" />
<MemberSignature Language="VB.NET" Value="Public Shared Function IsOddInteger (value As TSelf) As Boolean" />
<MemberSignature Language="F#" Value="static member IsOddInteger : 'Self -> bool" Usage="System.Numerics.INumberBase<'Self (requires 'Self :> System.Numerics.INumberBase<'Self>)>.IsOddInteger value" />
<MemberSignature Language="C++ CLI" Value="public:
 static bool IsOddInteger(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>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Boolean</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="value" Type="TSelf" />
</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>
</Docs>
</Member>
<Member MemberName="IsPositive">
<MemberSignature Language="C#" Value="public static abstract bool IsPositive (TSelf value);" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig virtual bool IsPositive(!TSelf value) cil managed" />
<MemberSignature Language="DocId" Value="M:System.Numerics.INumberBase`1.IsPositive(`0)" />
<MemberSignature Language="VB.NET" Value="Public Shared Function IsPositive (value As TSelf) As Boolean" />
<MemberSignature Language="F#" Value="static member IsPositive : 'Self -> bool" Usage="System.Numerics.INumberBase<'Self (requires 'Self :> System.Numerics.INumberBase<'Self>)>.IsPositive value" />
<MemberSignature Language="C++ CLI" Value="public:
 static bool IsPositive(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>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Boolean</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="value" Type="TSelf" />
</Parameters>
<Docs>
<param name="value">The value to be checked.</param>
<summary>Determines if a value represents zero or a positive real number.</summary>
<returns>
<see langword="true" /> if <paramref name="value" /> represents (positive) zero or a positive real number; otherwise, <see langword="false" />.</returns>
<remarks>
<format type="text/markdown"><![CDATA[
## Remarks
If this type has signed zero, then `-0` is not considered positive, but `+0` is.
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>
</Docs>
</Member>
<Member MemberName="IsPositiveInfinity">
<MemberSignature Language="C#" Value="public static abstract bool IsPositiveInfinity (TSelf value);" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig virtual bool IsPositiveInfinity(!TSelf value) cil managed" />
<MemberSignature Language="DocId" Value="M:System.Numerics.INumberBase`1.IsPositiveInfinity(`0)" />
<MemberSignature Language="VB.NET" Value="Public Shared Function IsPositiveInfinity (value As TSelf) As Boolean" />
<MemberSignature Language="F#" Value="static member IsPositiveInfinity : 'Self -> bool" Usage="System.Numerics.INumberBase<'Self (requires 'Self :> System.Numerics.INumberBase<'Self>)>.IsPositiveInfinity value" />
<MemberSignature Language="C++ CLI" Value="public:
 static bool IsPositiveInfinity(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>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Boolean</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="value" Type="TSelf" />
</Parameters>
<Docs>
<param name="value">The value to be checked.</param>
<summary>Determines if a value is positive infinity.</summary>
<returns>
<see langword="true" /> if <paramref name="value" /> is positive infinity; otherwise, <see langword="false" />.</returns>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="IsRealNumber">
<MemberSignature Language="C#" Value="public static abstract bool IsRealNumber (TSelf value);" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig virtual bool IsRealNumber(!TSelf value) cil managed" />
<MemberSignature Language="DocId" Value="M:System.Numerics.INumberBase`1.IsRealNumber(`0)" />
<MemberSignature Language="VB.NET" Value="Public Shared Function IsRealNumber (value As TSelf) As Boolean" />
<MemberSignature Language="F#" Value="static member IsRealNumber : 'Self -> bool" Usage="System.Numerics.INumberBase<'Self (requires 'Self :> System.Numerics.INumberBase<'Self>)>.IsRealNumber value" />
<MemberSignature Language="C++ CLI" Value="public:
 static bool IsRealNumber(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>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Boolean</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="value" Type="TSelf" />
</Parameters>
<Docs>
<param name="value">The value to be checked.</param>
<summary>Determines if a value represents a real number.</summary>
<returns>
<see langword="true" /> if <paramref name="value" /> is a real number; otherwise, <see langword="false" />.</returns>
<remarks>
<format type="text/markdown"><![CDATA[
## Remarks
This function returns `true` for a complex number `a + bi` where `b` is zero.
This function checks values against the extended real number line, thus returns `true` for positive and negative infinity.
]]></format>
</remarks>
</Docs>
</Member>
<Member MemberName="IsSubnormal">
<MemberSignature Language="C#" Value="public static abstract bool IsSubnormal (TSelf value);" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig virtual bool IsSubnormal(!TSelf value) cil managed" />
<MemberSignature Language="DocId" Value="M:System.Numerics.INumberBase`1.IsSubnormal(`0)" />
<MemberSignature Language="VB.NET" Value="Public Shared Function IsSubnormal (value As TSelf) As Boolean" />
<MemberSignature Language="F#" Value="static member IsSubnormal : 'Self -> bool" Usage="System.Numerics.INumberBase<'Self (requires 'Self :> System.Numerics.INumberBase<'Self>)>.IsSubnormal value" />
<MemberSignature Language="C++ CLI" Value="public:
 static bool IsSubnormal(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>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Boolean</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="value" Type="TSelf" />
</Parameters>
<Docs>
<param name="value">The value to be checked.</param>
<summary>Determines if a value is subnormal.</summary>
<returns>
<see langword="true" /> if <paramref name="value" /> is subnormal; otherwise, <see langword="false" />.</returns>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="IsZero">
<MemberSignature Language="C#" Value="public static abstract bool IsZero (TSelf value);" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig virtual bool IsZero(!TSelf value) cil managed" />
<MemberSignature Language="DocId" Value="M:System.Numerics.INumberBase`1.IsZero(`0)" />
<MemberSignature Language="VB.NET" Value="Public Shared Function IsZero (value As TSelf) As Boolean" />
<MemberSignature Language="F#" Value="static member IsZero : 'Self -> bool" Usage="System.Numerics.INumberBase<'Self (requires 'Self :> System.Numerics.INumberBase<'Self>)>.IsZero value" />
<MemberSignature Language="C++ CLI" Value="public:
 static bool IsZero(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>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Boolean</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="value" Type="TSelf" />
</Parameters>
<Docs>
<param name="value">The value to be checked.</param>
<summary>Determines if a value is zero.</summary>
<returns>
<see langword="true" /> if <paramref name="value" /> is zero; otherwise, <see langword="false" />.</returns>
<remarks>
<format type="text/markdown"><![CDATA[
## Remarks
This function treats both positive and negative zero as zero and so will return `true` for `+0.0` and `-0.0`.
]]></format>
</remarks>
</Docs>
</Member>
<Member MemberName="MaxMagnitude">
<MemberSignature Language="C#" Value="public static abstract TSelf MaxMagnitude (TSelf x, TSelf y);" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig virtual !TSelf MaxMagnitude(!TSelf x, !TSelf y) cil managed" />
<MemberSignature Language="DocId" Value="M:System.Numerics.INumberBase`1.MaxMagnitude(`0,`0)" />
<MemberSignature Language="VB.NET" Value="Public Shared Function MaxMagnitude (x As TSelf, y As TSelf) As TSelf" />
<MemberSignature Language="F#" Value="static member MaxMagnitude : 'Self * 'Self -> 'Self" Usage="System.Numerics.INumberBase<'Self (requires 'Self :> System.Numerics.INumberBase<'Self>)>.MaxMagnitude (x, y)" />
<MemberSignature Language="C++ CLI" Value="public:
 static TSelf MaxMagnitude(TSelf x, TSelf y);" />
<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>
</AssemblyInfo>
<ReturnValue>
<ReturnType>TSelf</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="x" Type="TSelf" />
<Parameter Name="y" Type="TSelf" />
</Parameters>
<Docs>
<param name="x">The value to compare with <paramref name="y" />.</param>
<param name="y">The value to compare with <paramref name="x" />.</param>
<summary>Compares two values to compute which has the greater magnitude.</summary>
<returns>
<paramref name="x" /> if it has a greater magnitude than <paramref name="y" />; otherwise, <paramref name="y" />.</returns>
<remarks>
<format type="text/markdown"><![CDATA[
## Remarks
For <xref:System.Numerics.IFloatingPointIeee754%601> this method matches the IEEE 754:2019 `maximumMagnitude` function. This requires NaN inputs to be propagated back to the caller and for `-0.0` to be treated as less than `+0.0`.
]]></format>
</remarks>
</Docs>
</Member>
<Member MemberName="MaxMagnitudeNumber">
<MemberSignature Language="C#" Value="public static abstract TSelf MaxMagnitudeNumber (TSelf x, TSelf y);" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig virtual !TSelf MaxMagnitudeNumber(!TSelf x, !TSelf y) cil managed" />
<MemberSignature Language="DocId" Value="M:System.Numerics.INumberBase`1.MaxMagnitudeNumber(`0,`0)" />
<MemberSignature Language="VB.NET" Value="Public Shared Function MaxMagnitudeNumber (x As TSelf, y As TSelf) As TSelf" />
<MemberSignature Language="F#" Value="static member MaxMagnitudeNumber : 'Self * 'Self -> 'Self" Usage="System.Numerics.INumberBase<'Self (requires 'Self :> System.Numerics.INumberBase<'Self>)>.MaxMagnitudeNumber (x, y)" />
<MemberSignature Language="C++ CLI" Value="public:
 static TSelf MaxMagnitudeNumber(TSelf x, TSelf y);" />
<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>
</AssemblyInfo>
<ReturnValue>
<ReturnType>TSelf</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="x" Type="TSelf" />
<Parameter Name="y" Type="TSelf" />
</Parameters>
<Docs>
<param name="x">The value to compare with <paramref name="y" />.</param>
<param name="y">The value to compare with <paramref name="x" />.</param>
<summary>Compares two values to compute which has the greater magnitude and returning the other value if an input is <c>NaN</c>.</summary>
<returns>
<paramref name="x" /> if it has a greater magnitude than <paramref name="y" />; otherwise, <paramref name="y" />.</returns>
<remarks>
<format type="text/markdown"><![CDATA[
## Remarks
For <xref:System.Numerics.IFloatingPointIeee754%601> this method matches the IEEE 754:2019 `maximumMagnitudeNumber` function. This requires NaN inputs to not be propagated back to the caller and for `-0.0` to be treated as less than `+0.0`.
]]></format>
</remarks>
</Docs>
</Member>
<Member MemberName="MinMagnitude">
<MemberSignature Language="C#" Value="public static abstract TSelf MinMagnitude (TSelf x, TSelf y);" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig virtual !TSelf MinMagnitude(!TSelf x, !TSelf y) cil managed" />
<MemberSignature Language="DocId" Value="M:System.Numerics.INumberBase`1.MinMagnitude(`0,`0)" />
<MemberSignature Language="VB.NET" Value="Public Shared Function MinMagnitude (x As TSelf, y As TSelf) As TSelf" />
<MemberSignature Language="F#" Value="static member MinMagnitude : 'Self * 'Self -> 'Self" Usage="System.Numerics.INumberBase<'Self (requires 'Self :> System.Numerics.INumberBase<'Self>)>.MinMagnitude (x, y)" />
<MemberSignature Language="C++ CLI" Value="public:
 static TSelf MinMagnitude(TSelf x, TSelf y);" />
<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>
</AssemblyInfo>
<ReturnValue>
<ReturnType>TSelf</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="x" Type="TSelf" />
<Parameter Name="y" Type="TSelf" />
</Parameters>
<Docs>
<param name="x">The value to compare with <paramref name="y" />.</param>
<param name="y">The value to compare with <paramref name="x" />.</param>
<summary>Compares two values to compute which has the lesser magnitude.</summary>
<returns>
<paramref name="x" /> if it has a lesser magnitude than <paramref name="y" />; otherwise, <paramref name="y" />.</returns>
<remarks>
<format type="text/markdown"><![CDATA[
## Remarks
For <xref:System.Numerics.IFloatingPointIeee754%601> this method matches the IEEE 754:2019 `minimumMagnitude` function. This requires NaN inputs to be propagated back to the caller and for `-0.0` to be treated as less than `+0.0`.
]]></format>
</remarks>
</Docs>
</Member>
<Member MemberName="MinMagnitudeNumber">
<MemberSignature Language="C#" Value="public static abstract TSelf MinMagnitudeNumber (TSelf x, TSelf y);" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig virtual !TSelf MinMagnitudeNumber(!TSelf x, !TSelf y) cil managed" />
<MemberSignature Language="DocId" Value="M:System.Numerics.INumberBase`1.MinMagnitudeNumber(`0,`0)" />
<MemberSignature Language="VB.NET" Value="Public Shared Function MinMagnitudeNumber (x As TSelf, y As TSelf) As TSelf" />
<MemberSignature Language="F#" Value="static member MinMagnitudeNumber : 'Self * 'Self -> 'Self" Usage="System.Numerics.INumberBase<'Self (requires 'Self :> System.Numerics.INumberBase<'Self>)>.MinMagnitudeNumber (x, y)" />
<MemberSignature Language="C++ CLI" Value="public:
 static TSelf MinMagnitudeNumber(TSelf x, TSelf y);" />
<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>