-
Notifications
You must be signed in to change notification settings - Fork 1.6k
/
Copy pathDouble.xml
10325 lines (9896 loc) · 710 KB
/
Double.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="Double" FullName="System.Double">
<TypeSignature Language="C#" Value="public struct Double : IComparable, IComparable<double>, IConvertible, IEquatable<double>, IFormattable" FrameworkAlternate="dotnet-uwp-10.0;netcore-1.0;netcore-1.1;netcore-2.0;netcore-2.1;netcore-2.2;netframework-2.0;netframework-3.0;netframework-3.5;netframework-4.0;netframework-4.5;netframework-4.5.1;netframework-4.5.2;netframework-4.6;netframework-4.6.1;netframework-4.6.2;netframework-4.7;netframework-4.7.1;netframework-4.7.2;netframework-4.8;netframework-4.8.1;netstandard-1.3;netstandard-1.4;netstandard-1.5;netstandard-1.6;netstandard-2.0" />
<TypeSignature Language="ILAsm" Value=".class public sequential ansi sealed beforefieldinit float64 extends System.ValueType implements class System.IComparable, class System.IComparable`1<float64>, class System.IConvertible, class System.IEquatable`1<float64>, class System.IFormattable" FrameworkAlternate="dotnet-uwp-10.0;net-5.0;netcore-1.0;netcore-1.1;netcore-2.0;netcore-2.1;netcore-2.2;netcore-3.0;netcore-3.1;netstandard-1.3;netstandard-1.4;netstandard-1.5;netstandard-1.6;netstandard-2.0;netstandard-2.1" />
<TypeSignature Language="DocId" Value="T:System.Double" />
<TypeSignature Language="VB.NET" Value="Public Structure Double
Implements IComparable, IComparable(Of Double), IConvertible, IEquatable(Of Double), IFormattable" FrameworkAlternate="dotnet-uwp-10.0;net-5.0;netcore-1.0;netcore-1.1;netcore-2.0;netcore-2.1;netcore-2.2;netcore-3.0;netcore-3.1;netframework-2.0;netframework-3.0;netframework-3.5;netframework-4.0;netframework-4.5;netframework-4.5.1;netframework-4.5.2;netframework-4.6;netframework-4.6.1;netframework-4.6.2;netframework-4.7;netframework-4.7.1;netframework-4.7.2;netframework-4.8;netframework-4.8.1;netstandard-1.3;netstandard-1.4;netstandard-1.5;netstandard-1.6;netstandard-2.0;netstandard-2.1" />
<TypeSignature Language="F#" Value="type double = struct
 interface IConvertible
 interface IFormattable" FrameworkAlternate="dotnet-uwp-10.0;net-5.0;netcore-1.0;netcore-1.1;netcore-2.0;netcore-2.1;netcore-2.2;netcore-3.0;netcore-3.1;netstandard-1.3;netstandard-1.4;netstandard-1.5;netstandard-1.6;netstandard-2.0;netstandard-2.1" />
<TypeSignature Language="C++ CLI" Value="public value class double : IComparable, IComparable<double>, IConvertible, IEquatable<double>, IFormattable" FrameworkAlternate="dotnet-uwp-10.0;net-5.0;netcore-1.0;netcore-1.1;netcore-2.0;netcore-2.1;netcore-2.2;netcore-3.0;netcore-3.1;netframework-2.0;netframework-3.0;netframework-3.5;netframework-4.0;netframework-4.5;netframework-4.5.1;netframework-4.5.2;netframework-4.6;netframework-4.6.1;netframework-4.6.2;netframework-4.7;netframework-4.7.1;netframework-4.7.2;netframework-4.8;netframework-4.8.1;netstandard-1.3;netstandard-1.4;netstandard-1.5;netstandard-1.6;netstandard-2.0;netstandard-2.1" />
<TypeSignature Language="C#" Value="public readonly struct Double : IComparable, IComparable<double>, IConvertible, IEquatable<double>, IFormattable" FrameworkAlternate="net-5.0;netcore-3.0;netcore-3.1;netstandard-2.1" />
<TypeSignature Language="C#" Value="public readonly struct Double : IComparable, IComparable<double>, IConvertible, IEquatable<double>, ISpanFormattable" FrameworkAlternate="net-6.0" />
<TypeSignature Language="ILAsm" Value=".class public sequential ansi sealed beforefieldinit float64 extends System.ValueType implements class System.IComparable, class System.IComparable`1<float64>, class System.IConvertible, class System.IEquatable`1<float64>, class System.IFormattable, class System.ISpanFormattable" FrameworkAlternate="net-6.0" />
<TypeSignature Language="VB.NET" Value="Public Structure Double
Implements IComparable, IComparable(Of Double), IConvertible, IEquatable(Of Double), ISpanFormattable" FrameworkAlternate="net-6.0" />
<TypeSignature Language="F#" Value="type double = struct
 interface IConvertible
 interface ISpanFormattable
 interface IFormattable" FrameworkAlternate="net-6.0" />
<TypeSignature Language="C++ CLI" Value="public value class double : IComparable, IComparable<double>, IConvertible, IEquatable<double>, ISpanFormattable" FrameworkAlternate="net-6.0" />
<TypeSignature Language="C#" Value="public readonly struct Double : IComparable<double>, IConvertible, IEquatable<double>, IParsable<double>, ISpanParsable<double>, System.Numerics.IAdditionOperators<double,double,double>, System.Numerics.IAdditiveIdentity<double,double>, System.Numerics.IBinaryFloatingPointIeee754<double>, System.Numerics.IBinaryNumber<double>, System.Numerics.IBitwiseOperators<double,double,double>, System.Numerics.IComparisonOperators<double,double,bool>, System.Numerics.IDecrementOperators<double>, System.Numerics.IDivisionOperators<double,double,double>, System.Numerics.IEqualityOperators<double,double,bool>, System.Numerics.IExponentialFunctions<double>, System.Numerics.IFloatingPoint<double>, System.Numerics.IFloatingPointConstants<double>, System.Numerics.IFloatingPointIeee754<double>, System.Numerics.IHyperbolicFunctions<double>, System.Numerics.IIncrementOperators<double>, System.Numerics.ILogarithmicFunctions<double>, System.Numerics.IMinMaxValue<double>, System.Numerics.IModulusOperators<double,double,double>, System.Numerics.IMultiplicativeIdentity<double,double>, System.Numerics.IMultiplyOperators<double,double,double>, System.Numerics.INumber<double>, System.Numerics.INumberBase<double>, System.Numerics.IPowerFunctions<double>, System.Numerics.IRootFunctions<double>, System.Numerics.ISignedNumber<double>, System.Numerics.ISubtractionOperators<double,double,double>, System.Numerics.ITrigonometricFunctions<double>, System.Numerics.IUnaryNegationOperators<double,double>, System.Numerics.IUnaryPlusOperators<double,double>" FrameworkAlternate="net-7.0" />
<TypeSignature Language="ILAsm" Value=".class public sequential ansi sealed beforefieldinit float64 extends System.ValueType implements class System.IComparable, class System.IComparable`1<float64>, class System.IConvertible, class System.IEquatable`1<float64>, class System.IFormattable, class System.IParsable`1<float64>, class System.ISpanFormattable, class System.ISpanParsable`1<float64>, class System.Numerics.IAdditionOperators`3<float64, float64, float64>, class System.Numerics.IAdditiveIdentity`2<float64, float64>, class System.Numerics.IBinaryFloatingPointIeee754`1<float64>, class System.Numerics.IBinaryNumber`1<float64>, class System.Numerics.IBitwiseOperators`3<float64, float64, float64>, class System.Numerics.IComparisonOperators`3<float64, float64, bool>, class System.Numerics.IDecrementOperators`1<float64>, class System.Numerics.IDivisionOperators`3<float64, float64, float64>, class System.Numerics.IEqualityOperators`3<float64, float64, bool>, class System.Numerics.IExponentialFunctions`1<float64>, class System.Numerics.IFloatingPoint`1<float64>, class System.Numerics.IFloatingPointConstants`1<float64>, class System.Numerics.IFloatingPointIeee754`1<float64>, class System.Numerics.IHyperbolicFunctions`1<float64>, class System.Numerics.IIncrementOperators`1<float64>, class System.Numerics.ILogarithmicFunctions`1<float64>, class System.Numerics.IMinMaxValue`1<float64>, class System.Numerics.IModulusOperators`3<float64, float64, float64>, class System.Numerics.IMultiplicativeIdentity`2<float64, float64>, class System.Numerics.IMultiplyOperators`3<float64, float64, float64>, class System.Numerics.INumber`1<float64>, class System.Numerics.INumberBase`1<float64>, class System.Numerics.IPowerFunctions`1<float64>, class System.Numerics.IRootFunctions`1<float64>, class System.Numerics.ISignedNumber`1<float64>, class System.Numerics.ISubtractionOperators`3<float64, float64, float64>, class System.Numerics.ITrigonometricFunctions`1<float64>, class System.Numerics.IUnaryNegationOperators`2<float64, float64>, class System.Numerics.IUnaryPlusOperators`2<float64, float64>" FrameworkAlternate="net-7.0" />
<TypeSignature Language="VB.NET" Value="Public Structure Double
Implements IAdditionOperators(Of Double, Double, Double), IAdditiveIdentity(Of Double, Double), IBinaryFloatingPointIeee754(Of Double), IBinaryNumber(Of Double), IBitwiseOperators(Of Double, Double, Double), IComparable(Of Double), IComparisonOperators(Of Double, Double, Boolean), IConvertible, IDecrementOperators(Of Double), IDivisionOperators(Of Double, Double, Double), IEqualityOperators(Of Double, Double, Boolean), IEquatable(Of Double), IExponentialFunctions(Of Double), IFloatingPoint(Of Double), IFloatingPointConstants(Of Double), IFloatingPointIeee754(Of Double), IHyperbolicFunctions(Of Double), IIncrementOperators(Of Double), ILogarithmicFunctions(Of Double), IMinMaxValue(Of Double), IModulusOperators(Of Double, Double, Double), IMultiplicativeIdentity(Of Double, Double), IMultiplyOperators(Of Double, Double, Double), INumber(Of Double), INumberBase(Of Double), IParsable(Of Double), IPowerFunctions(Of Double), IRootFunctions(Of Double), ISignedNumber(Of Double), ISpanParsable(Of Double), ISubtractionOperators(Of Double, Double, Double), ITrigonometricFunctions(Of Double), IUnaryNegationOperators(Of Double, Double), IUnaryPlusOperators(Of Double, Double)" FrameworkAlternate="net-7.0" />
<TypeSignature Language="F#" Value="type double = struct
 interface IConvertible
 interface IFormattable
 interface IParsable<double>
 interface ISpanFormattable
 interface ISpanParsable<double>
 interface IAdditionOperators<double, double, double>
 interface IAdditiveIdentity<double, double>
 interface IBinaryFloatingPointIeee754<double>
 interface IBinaryNumber<double>
 interface IBitwiseOperators<double, double, double>
 interface IComparisonOperators<double, double, bool>
 interface IEqualityOperators<double, double, bool>
 interface IDecrementOperators<double>
 interface IDivisionOperators<double, double, double>
 interface IIncrementOperators<double>
 interface IModulusOperators<double, double, double>
 interface IMultiplicativeIdentity<double, double>
 interface IMultiplyOperators<double, double, double>
 interface INumber<double>
 interface INumberBase<double>
 interface ISubtractionOperators<double, double, double>
 interface IUnaryNegationOperators<double, double>
 interface IUnaryPlusOperators<double, double>
 interface IExponentialFunctions<double>
 interface IFloatingPointConstants<double>
 interface IFloatingPoint<double>
 interface ISignedNumber<double>
 interface IFloatingPointIeee754<double>
 interface IHyperbolicFunctions<double>
 interface ILogarithmicFunctions<double>
 interface IPowerFunctions<double>
 interface IRootFunctions<double>
 interface ITrigonometricFunctions<double>
 interface IMinMaxValue<double>" FrameworkAlternate="net-7.0" />
<TypeSignature Language="C++ CLI" Value="public value class double : IComparable<double>, IConvertible, IEquatable<double>, IParsable<double>, ISpanParsable<double>, System::Numerics::IAdditionOperators<double, double, double>, System::Numerics::IAdditiveIdentity<double, double>, System::Numerics::IBinaryFloatingPointIeee754<double>, System::Numerics::IBinaryNumber<double>, System::Numerics::IBitwiseOperators<double, double, double>, System::Numerics::IComparisonOperators<double, double, bool>, System::Numerics::IDecrementOperators<double>, System::Numerics::IDivisionOperators<double, double, double>, System::Numerics::IEqualityOperators<double, double, bool>, System::Numerics::IExponentialFunctions<double>, System::Numerics::IFloatingPoint<double>, System::Numerics::IFloatingPointConstants<double>, System::Numerics::IFloatingPointIeee754<double>, System::Numerics::IHyperbolicFunctions<double>, System::Numerics::IIncrementOperators<double>, System::Numerics::ILogarithmicFunctions<double>, System::Numerics::IMinMaxValue<double>, System::Numerics::IModulusOperators<double, double, double>, System::Numerics::IMultiplicativeIdentity<double, double>, System::Numerics::IMultiplyOperators<double, double, double>, System::Numerics::INumber<double>, System::Numerics::INumberBase<double>, System::Numerics::IPowerFunctions<double>, System::Numerics::IRootFunctions<double>, System::Numerics::ISignedNumber<double>, System::Numerics::ISubtractionOperators<double, double, double>, System::Numerics::ITrigonometricFunctions<double>, System::Numerics::IUnaryNegationOperators<double, double>, System::Numerics::IUnaryPlusOperators<double, double>" FrameworkAlternate="net-7.0" />
<TypeSignature Language="C#" Value="public readonly struct Double : IComparable<double>, IConvertible, IEquatable<double>, IParsable<double>, ISpanParsable<double>, IUtf8SpanParsable<double>, System.Numerics.IAdditionOperators<double,double,double>, System.Numerics.IAdditiveIdentity<double,double>, System.Numerics.IBinaryFloatingPointIeee754<double>, System.Numerics.IBinaryNumber<double>, System.Numerics.IBitwiseOperators<double,double,double>, System.Numerics.IComparisonOperators<double,double,bool>, System.Numerics.IDecrementOperators<double>, System.Numerics.IDivisionOperators<double,double,double>, System.Numerics.IEqualityOperators<double,double,bool>, System.Numerics.IExponentialFunctions<double>, System.Numerics.IFloatingPoint<double>, System.Numerics.IFloatingPointConstants<double>, System.Numerics.IFloatingPointIeee754<double>, System.Numerics.IHyperbolicFunctions<double>, System.Numerics.IIncrementOperators<double>, System.Numerics.ILogarithmicFunctions<double>, System.Numerics.IMinMaxValue<double>, System.Numerics.IModulusOperators<double,double,double>, System.Numerics.IMultiplicativeIdentity<double,double>, System.Numerics.IMultiplyOperators<double,double,double>, System.Numerics.INumber<double>, System.Numerics.INumberBase<double>, System.Numerics.IPowerFunctions<double>, System.Numerics.IRootFunctions<double>, System.Numerics.ISignedNumber<double>, System.Numerics.ISubtractionOperators<double,double,double>, System.Numerics.ITrigonometricFunctions<double>, System.Numerics.IUnaryNegationOperators<double,double>, System.Numerics.IUnaryPlusOperators<double,double>" FrameworkAlternate="net-8.0;net-9.0" />
<TypeSignature Language="ILAsm" Value=".class public sequential ansi sealed beforefieldinit float64 extends System.ValueType implements class System.IComparable, class System.IComparable`1<float64>, class System.IConvertible, class System.IEquatable`1<float64>, class System.IFormattable, class System.IParsable`1<float64>, class System.ISpanFormattable, class System.ISpanParsable`1<float64>, class System.IUtf8SpanFormattable, class System.IUtf8SpanParsable`1<float64>, class System.Numerics.IAdditionOperators`3<float64, float64, float64>, class System.Numerics.IAdditiveIdentity`2<float64, float64>, class System.Numerics.IBinaryFloatingPointIeee754`1<float64>, class System.Numerics.IBinaryNumber`1<float64>, class System.Numerics.IBitwiseOperators`3<float64, float64, float64>, class System.Numerics.IComparisonOperators`3<float64, float64, bool>, class System.Numerics.IDecrementOperators`1<float64>, class System.Numerics.IDivisionOperators`3<float64, float64, float64>, class System.Numerics.IEqualityOperators`3<float64, float64, bool>, class System.Numerics.IExponentialFunctions`1<float64>, class System.Numerics.IFloatingPoint`1<float64>, class System.Numerics.IFloatingPointConstants`1<float64>, class System.Numerics.IFloatingPointIeee754`1<float64>, class System.Numerics.IHyperbolicFunctions`1<float64>, class System.Numerics.IIncrementOperators`1<float64>, class System.Numerics.ILogarithmicFunctions`1<float64>, class System.Numerics.IMinMaxValue`1<float64>, class System.Numerics.IModulusOperators`3<float64, float64, float64>, class System.Numerics.IMultiplicativeIdentity`2<float64, float64>, class System.Numerics.IMultiplyOperators`3<float64, float64, float64>, class System.Numerics.INumber`1<float64>, class System.Numerics.INumberBase`1<float64>, class System.Numerics.IPowerFunctions`1<float64>, class System.Numerics.IRootFunctions`1<float64>, class System.Numerics.ISignedNumber`1<float64>, class System.Numerics.ISubtractionOperators`3<float64, float64, float64>, class System.Numerics.ITrigonometricFunctions`1<float64>, class System.Numerics.IUnaryNegationOperators`2<float64, float64>, class System.Numerics.IUnaryPlusOperators`2<float64, float64>" FrameworkAlternate="net-8.0;net-9.0" />
<TypeSignature Language="VB.NET" Value="Public Structure Double
Implements IAdditionOperators(Of Double, Double, Double), IAdditiveIdentity(Of Double, Double), IBinaryFloatingPointIeee754(Of Double), IBinaryNumber(Of Double), IBitwiseOperators(Of Double, Double, Double), IComparable(Of Double), IComparisonOperators(Of Double, Double, Boolean), IConvertible, IDecrementOperators(Of Double), IDivisionOperators(Of Double, Double, Double), IEqualityOperators(Of Double, Double, Boolean), IEquatable(Of Double), IExponentialFunctions(Of Double), IFloatingPoint(Of Double), IFloatingPointConstants(Of Double), IFloatingPointIeee754(Of Double), IHyperbolicFunctions(Of Double), IIncrementOperators(Of Double), ILogarithmicFunctions(Of Double), IMinMaxValue(Of Double), IModulusOperators(Of Double, Double, Double), IMultiplicativeIdentity(Of Double, Double), IMultiplyOperators(Of Double, Double, Double), INumber(Of Double), INumberBase(Of Double), IParsable(Of Double), IPowerFunctions(Of Double), IRootFunctions(Of Double), ISignedNumber(Of Double), ISpanParsable(Of Double), ISubtractionOperators(Of Double, Double, Double), ITrigonometricFunctions(Of Double), IUnaryNegationOperators(Of Double, Double), IUnaryPlusOperators(Of Double, Double), IUtf8SpanParsable(Of Double)" FrameworkAlternate="net-8.0;net-9.0" />
<TypeSignature Language="F#" Value="type double = struct
 interface IConvertible
 interface IFormattable
 interface IParsable<double>
 interface ISpanFormattable
 interface ISpanParsable<double>
 interface IAdditionOperators<double, double, double>
 interface IAdditiveIdentity<double, double>
 interface IBinaryFloatingPointIeee754<double>
 interface IBinaryNumber<double>
 interface IBitwiseOperators<double, double, double>
 interface IComparisonOperators<double, double, bool>
 interface IEqualityOperators<double, double, bool>
 interface IDecrementOperators<double>
 interface IDivisionOperators<double, double, double>
 interface IIncrementOperators<double>
 interface IModulusOperators<double, double, double>
 interface IMultiplicativeIdentity<double, double>
 interface IMultiplyOperators<double, double, double>
 interface INumber<double>
 interface INumberBase<double>
 interface ISubtractionOperators<double, double, double>
 interface IUnaryNegationOperators<double, double>
 interface IUnaryPlusOperators<double, double>
 interface IUtf8SpanFormattable
 interface IUtf8SpanParsable<double>
 interface IExponentialFunctions<double>
 interface IFloatingPointConstants<double>
 interface IFloatingPoint<double>
 interface ISignedNumber<double>
 interface IFloatingPointIeee754<double>
 interface IHyperbolicFunctions<double>
 interface ILogarithmicFunctions<double>
 interface IPowerFunctions<double>
 interface IRootFunctions<double>
 interface ITrigonometricFunctions<double>
 interface IMinMaxValue<double>" FrameworkAlternate="net-8.0" />
<TypeSignature Language="C++ CLI" Value="public value class double : IComparable<double>, IConvertible, IEquatable<double>, IParsable<double>, ISpanParsable<double>, IUtf8SpanParsable<double>, System::Numerics::IAdditionOperators<double, double, double>, System::Numerics::IAdditiveIdentity<double, double>, System::Numerics::IBinaryFloatingPointIeee754<double>, System::Numerics::IBinaryNumber<double>, System::Numerics::IBitwiseOperators<double, double, double>, System::Numerics::IComparisonOperators<double, double, bool>, System::Numerics::IDecrementOperators<double>, System::Numerics::IDivisionOperators<double, double, double>, System::Numerics::IEqualityOperators<double, double, bool>, System::Numerics::IExponentialFunctions<double>, System::Numerics::IFloatingPoint<double>, System::Numerics::IFloatingPointConstants<double>, System::Numerics::IFloatingPointIeee754<double>, System::Numerics::IHyperbolicFunctions<double>, System::Numerics::IIncrementOperators<double>, System::Numerics::ILogarithmicFunctions<double>, System::Numerics::IMinMaxValue<double>, System::Numerics::IModulusOperators<double, double, double>, System::Numerics::IMultiplicativeIdentity<double, double>, System::Numerics::IMultiplyOperators<double, double, double>, System::Numerics::INumber<double>, System::Numerics::INumberBase<double>, System::Numerics::IPowerFunctions<double>, System::Numerics::IRootFunctions<double>, System::Numerics::ISignedNumber<double>, System::Numerics::ISubtractionOperators<double, double, double>, System::Numerics::ITrigonometricFunctions<double>, System::Numerics::IUnaryNegationOperators<double, double>, System::Numerics::IUnaryPlusOperators<double, double>" FrameworkAlternate="net-8.0;net-9.0" />
<TypeSignature Language="F#" Value="type double = struct
 interface IConvertible
 interface IFormattable
 interface IParsable<double>
 interface ISpanFormattable
 interface ISpanParsable<double>
 interface IUtf8SpanFormattable
 interface IUtf8SpanParsable<double>
 interface IAdditionOperators<double, double, double>
 interface IAdditiveIdentity<double, double>
 interface IBinaryFloatingPointIeee754<double>
 interface IBinaryNumber<double>
 interface IBitwiseOperators<double, double, double>
 interface IComparisonOperators<double, double, bool>
 interface IEqualityOperators<double, double, bool>
 interface IDecrementOperators<double>
 interface IDivisionOperators<double, double, double>
 interface IIncrementOperators<double>
 interface IModulusOperators<double, double, double>
 interface IMultiplicativeIdentity<double, double>
 interface IMultiplyOperators<double, double, double>
 interface INumber<double>
 interface INumberBase<double>
 interface ISubtractionOperators<double, double, double>
 interface IUnaryNegationOperators<double, double>
 interface IUnaryPlusOperators<double, double>
 interface IExponentialFunctions<double>
 interface IFloatingPointConstants<double>
 interface IFloatingPoint<double>
 interface ISignedNumber<double>
 interface IFloatingPointIeee754<double>
 interface IHyperbolicFunctions<double>
 interface ILogarithmicFunctions<double>
 interface IPowerFunctions<double>
 interface IRootFunctions<double>
 interface ITrigonometricFunctions<double>
 interface IMinMaxValue<double>" FrameworkAlternate="net-9.0" />
<TypeSignature Language="C#" Value="public struct Double : IComparable, IConvertible, IFormattable" FrameworkAlternate="netframework-1.1" />
<TypeSignature Language="ILAsm" Value=".class public sequential ansi serializable sealed beforefieldinit float64 extends System.ValueType implements class System.IComparable, class System.IConvertible, class System.IFormattable" FrameworkAlternate="netframework-1.1" />
<TypeSignature Language="VB.NET" Value="Public Structure Double
Implements IComparable, IConvertible, IFormattable" FrameworkAlternate="netframework-1.1" />
<TypeSignature Language="F#" Value="type double = struct
 interface IFormattable
 interface IConvertible" FrameworkAlternate="netframework-1.1;netframework-2.0;netframework-3.0;netframework-3.5;netframework-4.0;netframework-4.5;netframework-4.5.1;netframework-4.5.2;netframework-4.6;netframework-4.6.1;netframework-4.6.2;netframework-4.7;netframework-4.7.1;netframework-4.7.2;netframework-4.8;netframework-4.8.1" />
<TypeSignature Language="C++ CLI" Value="public value class double : IComparable, IConvertible, IFormattable" FrameworkAlternate="netframework-1.1" />
<TypeSignature Language="ILAsm" Value=".class public sequential ansi serializable sealed beforefieldinit float64 extends System.ValueType implements class System.IComparable, class System.IComparable`1<float64>, class System.IConvertible, class System.IEquatable`1<float64>, class System.IFormattable" FrameworkAlternate="netframework-2.0;netframework-3.0;netframework-3.5;netframework-4.0;netframework-4.5;netframework-4.5.1;netframework-4.5.2;netframework-4.6;netframework-4.6.1;netframework-4.6.2;netframework-4.7;netframework-4.7.1;netframework-4.7.2;netframework-4.8;netframework-4.8.1" />
<TypeSignature Language="C#" Value="public struct Double : IComparable, IComparable<double>, IEquatable<double>, IFormattable" FrameworkAlternate="netstandard-1.0;netstandard-1.1;netstandard-1.2" />
<TypeSignature Language="ILAsm" Value=".class public sequential ansi sealed beforefieldinit float64 extends System.ValueType implements class System.IComparable, class System.IComparable`1<float64>, class System.IEquatable`1<float64>, class System.IFormattable" FrameworkAlternate="netstandard-1.0;netstandard-1.1;netstandard-1.2" />
<TypeSignature Language="VB.NET" Value="Public Structure Double
Implements IComparable, IComparable(Of Double), IEquatable(Of Double), IFormattable" FrameworkAlternate="netstandard-1.0;netstandard-1.1;netstandard-1.2" />
<TypeSignature Language="F#" Value="type double = struct
 interface IFormattable" FrameworkAlternate="netstandard-1.0;netstandard-1.1;netstandard-1.2" />
<TypeSignature Language="C++ CLI" Value="public value class double : IComparable, IComparable<double>, IEquatable<double>, IFormattable" FrameworkAlternate="netstandard-1.0;netstandard-1.1;netstandard-1.2" />
<AssemblyInfo>
<AssemblyName>System.Runtime</AssemblyName>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
<AssemblyVersion>4.0.10.0</AssemblyVersion>
<AssemblyVersion>4.0.20.0</AssemblyVersion>
<AssemblyVersion>4.1.0.0</AssemblyVersion>
<AssemblyVersion>4.2.0.0</AssemblyVersion>
<AssemblyVersion>4.2.1.0</AssemblyVersion>
<AssemblyVersion>4.2.2.0</AssemblyVersion>
<AssemblyVersion>5.0.0.0</AssemblyVersion>
<AssemblyVersion>6.0.0.0</AssemblyVersion>
<AssemblyVersion>7.0.0.0</AssemblyVersion>
<AssemblyVersion>8.0.0.0</AssemblyVersion>
<AssemblyVersion>9.0.0.0</AssemblyVersion>
</AssemblyInfo>
<AssemblyInfo>
<AssemblyName>mscorlib</AssemblyName>
<AssemblyVersion>1.0.5000.0</AssemblyVersion>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
<AssemblyVersion>2.0.5.0</AssemblyVersion>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<AssemblyInfo>
<AssemblyName>netstandard</AssemblyName>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
<AssemblyVersion>2.1.0.0</AssemblyVersion>
</AssemblyInfo>
<TypeForwardingChain>
<TypeForwarding From="mscorlib" FromVersion="4.0.0.0" To="System.Runtime" ToVersion="0.0.0.0" FrameworkAlternate="dotnet-uwp-10.0" />
<TypeForwarding From="netstandard" FromVersion="2.1.0.0" To="System.Runtime" ToVersion="5.0.0.0" FrameworkAlternate="net-5.0" />
<TypeForwarding From="netstandard" FromVersion="2.1.0.0" To="System.Runtime" ToVersion="6.0.0.0" FrameworkAlternate="net-6.0" />
<TypeForwarding From="netstandard" FromVersion="2.1.0.0" To="System.Runtime" ToVersion="7.0.0.0" FrameworkAlternate="net-7.0" />
<TypeForwarding From="netstandard" FromVersion="2.1.0.0" To="System.Runtime" ToVersion="8.0.0.0" FrameworkAlternate="net-8.0" />
<TypeForwarding From="netstandard" FromVersion="2.1.0.0" To="System.Runtime" ToVersion="9.0.0.0" FrameworkAlternate="net-9.0" />
<TypeForwarding From="System.Runtime" FromVersion="4.1.1.1" To="mscorlib" ToVersion="4.0.0.0" FrameworkAlternate="netframework-4.6.2;netframework-4.7;netframework-4.7.1;netframework-4.7.2;netframework-4.8;netframework-4.8.1" />
</TypeForwardingChain>
<Base>
<BaseTypeName>System.ValueType</BaseTypeName>
</Base>
<Interfaces>
<Interface>
<InterfaceName>System.IComparable</InterfaceName>
</Interface>
<Interface FrameworkAlternate="dotnet-uwp-10.0;net-5.0;net-6.0;net-7.0;net-8.0;net-9.0;netcore-1.0;netcore-1.1;netcore-2.0;netcore-2.1;netcore-2.2;netcore-3.0;netcore-3.1;netframework-2.0;netframework-3.0;netframework-3.5;netframework-4.0;netframework-4.5;netframework-4.5.1;netframework-4.5.2;netframework-4.6;netframework-4.6.1;netframework-4.6.2;netframework-4.7;netframework-4.7.1;netframework-4.7.2;netframework-4.8;netframework-4.8.1;netstandard-1.0;netstandard-1.1;netstandard-1.2;netstandard-1.3;netstandard-1.4;netstandard-1.5;netstandard-1.6;netstandard-2.0;netstandard-2.1">
<InterfaceName>System.IComparable<System.Double></InterfaceName>
</Interface>
<Interface FrameworkAlternate="dotnet-uwp-10.0;net-5.0;net-6.0;net-7.0;net-8.0;net-9.0;netcore-1.0;netcore-1.1;netcore-2.0;netcore-2.1;netcore-2.2;netcore-3.0;netcore-3.1;netframework-1.1;netframework-2.0;netframework-3.0;netframework-3.5;netframework-4.0;netframework-4.5;netframework-4.5.1;netframework-4.5.2;netframework-4.6;netframework-4.6.1;netframework-4.6.2;netframework-4.7;netframework-4.7.1;netframework-4.7.2;netframework-4.8;netframework-4.8.1;netstandard-1.3;netstandard-1.4;netstandard-1.5;netstandard-1.6;netstandard-2.0;netstandard-2.1">
<InterfaceName>System.IConvertible</InterfaceName>
</Interface>
<Interface FrameworkAlternate="dotnet-uwp-10.0;net-5.0;net-6.0;net-7.0;net-8.0;net-9.0;netcore-1.0;netcore-1.1;netcore-2.0;netcore-2.1;netcore-2.2;netcore-3.0;netcore-3.1;netframework-2.0;netframework-3.0;netframework-3.5;netframework-4.0;netframework-4.5;netframework-4.5.1;netframework-4.5.2;netframework-4.6;netframework-4.6.1;netframework-4.6.2;netframework-4.7;netframework-4.7.1;netframework-4.7.2;netframework-4.8;netframework-4.8.1;netstandard-1.0;netstandard-1.1;netstandard-1.2;netstandard-1.3;netstandard-1.4;netstandard-1.5;netstandard-1.6;netstandard-2.0;netstandard-2.1">
<InterfaceName>System.IEquatable<System.Double></InterfaceName>
</Interface>
<Interface>
<InterfaceName>System.IFormattable</InterfaceName>
</Interface>
<Interface FrameworkAlternate="net-6.0;net-7.0;net-8.0;net-9.0">
<InterfaceName>System.ISpanFormattable</InterfaceName>
</Interface>
<Interface FrameworkAlternate="net-7.0;net-8.0;net-9.0">
<InterfaceName>System.IComparable<TSelf></InterfaceName>
</Interface>
<Interface FrameworkAlternate="net-7.0;net-8.0;net-9.0">
<InterfaceName>System.IEquatable<TSelf></InterfaceName>
</Interface>
<Interface FrameworkAlternate="net-7.0;net-8.0;net-9.0">
<InterfaceName>System.IParsable<System.Double></InterfaceName>
</Interface>
<Interface FrameworkAlternate="net-7.0;net-8.0;net-9.0">
<InterfaceName>System.IParsable<TSelf></InterfaceName>
</Interface>
<Interface FrameworkAlternate="net-7.0;net-8.0;net-9.0">
<InterfaceName>System.ISpanParsable<System.Double></InterfaceName>
</Interface>
<Interface FrameworkAlternate="net-7.0;net-8.0;net-9.0">
<InterfaceName>System.ISpanParsable<TSelf></InterfaceName>
</Interface>
<Interface FrameworkAlternate="net-7.0;net-8.0;net-9.0">
<InterfaceName>System.Numerics.IAdditionOperators<System.Double,System.Double,System.Double></InterfaceName>
</Interface>
<Interface FrameworkAlternate="net-7.0;net-8.0;net-9.0">
<InterfaceName>System.Numerics.IAdditionOperators<TSelf,TSelf,TSelf></InterfaceName>
</Interface>
<Interface FrameworkAlternate="net-7.0;net-8.0;net-9.0">
<InterfaceName>System.Numerics.IAdditiveIdentity<System.Double,System.Double></InterfaceName>
</Interface>
<Interface FrameworkAlternate="net-7.0;net-8.0;net-9.0">
<InterfaceName>System.Numerics.IAdditiveIdentity<TSelf,TSelf></InterfaceName>
</Interface>
<Interface FrameworkAlternate="net-7.0;net-8.0;net-9.0">
<InterfaceName>System.Numerics.IBinaryFloatingPointIeee754<System.Double></InterfaceName>
</Interface>
<Interface FrameworkAlternate="net-7.0;net-8.0;net-9.0">
<InterfaceName>System.Numerics.IBinaryNumber<System.Double></InterfaceName>
</Interface>
<Interface FrameworkAlternate="net-7.0;net-8.0;net-9.0">
<InterfaceName>System.Numerics.IBinaryNumber<TSelf></InterfaceName>
</Interface>
<Interface FrameworkAlternate="net-7.0;net-8.0;net-9.0">
<InterfaceName>System.Numerics.IBitwiseOperators<System.Double,System.Double,System.Double></InterfaceName>
</Interface>
<Interface FrameworkAlternate="net-7.0;net-8.0;net-9.0">
<InterfaceName>System.Numerics.IBitwiseOperators<TSelf,TSelf,TSelf></InterfaceName>
</Interface>
<Interface FrameworkAlternate="net-7.0;net-8.0;net-9.0">
<InterfaceName>System.Numerics.IComparisonOperators<System.Double,System.Double,System.Boolean></InterfaceName>
</Interface>
<Interface FrameworkAlternate="net-7.0;net-8.0;net-9.0">
<InterfaceName>System.Numerics.IComparisonOperators<TSelf,TSelf,System.Boolean></InterfaceName>
</Interface>
<Interface FrameworkAlternate="net-7.0;net-8.0;net-9.0">
<InterfaceName>System.Numerics.IDecrementOperators<System.Double></InterfaceName>
</Interface>
<Interface FrameworkAlternate="net-7.0;net-8.0;net-9.0">
<InterfaceName>System.Numerics.IDecrementOperators<TSelf></InterfaceName>
</Interface>
<Interface FrameworkAlternate="net-7.0;net-8.0;net-9.0">
<InterfaceName>System.Numerics.IDivisionOperators<System.Double,System.Double,System.Double></InterfaceName>
</Interface>
<Interface FrameworkAlternate="net-7.0;net-8.0;net-9.0">
<InterfaceName>System.Numerics.IDivisionOperators<TSelf,TSelf,TSelf></InterfaceName>
</Interface>
<Interface FrameworkAlternate="net-7.0;net-8.0;net-9.0">
<InterfaceName>System.Numerics.IEqualityOperators<System.Double,System.Double,System.Boolean></InterfaceName>
</Interface>
<Interface FrameworkAlternate="net-7.0;net-8.0;net-9.0">
<InterfaceName>System.Numerics.IEqualityOperators<TSelf,TOther,TResult></InterfaceName>
</Interface>
<Interface FrameworkAlternate="net-7.0;net-8.0;net-9.0">
<InterfaceName>System.Numerics.IEqualityOperators<TSelf,TSelf,System.Boolean></InterfaceName>
</Interface>
<Interface FrameworkAlternate="net-7.0;net-8.0;net-9.0">
<InterfaceName>System.Numerics.IExponentialFunctions<System.Double></InterfaceName>
</Interface>
<Interface FrameworkAlternate="net-7.0;net-8.0;net-9.0">
<InterfaceName>System.Numerics.IExponentialFunctions<TSelf></InterfaceName>
</Interface>
<Interface FrameworkAlternate="net-7.0;net-8.0;net-9.0">
<InterfaceName>System.Numerics.IFloatingPoint<System.Double></InterfaceName>
</Interface>
<Interface FrameworkAlternate="net-7.0;net-8.0;net-9.0">
<InterfaceName>System.Numerics.IFloatingPoint<TSelf></InterfaceName>
</Interface>
<Interface FrameworkAlternate="net-7.0;net-8.0;net-9.0">
<InterfaceName>System.Numerics.IFloatingPointConstants<System.Double></InterfaceName>
</Interface>
<Interface FrameworkAlternate="net-7.0;net-8.0;net-9.0">
<InterfaceName>System.Numerics.IFloatingPointConstants<TSelf></InterfaceName>
</Interface>
<Interface FrameworkAlternate="net-7.0;net-8.0;net-9.0">
<InterfaceName>System.Numerics.IFloatingPointIeee754<System.Double></InterfaceName>
</Interface>
<Interface FrameworkAlternate="net-7.0;net-8.0;net-9.0">
<InterfaceName>System.Numerics.IFloatingPointIeee754<TSelf></InterfaceName>
</Interface>
<Interface FrameworkAlternate="net-7.0;net-8.0;net-9.0">
<InterfaceName>System.Numerics.IHyperbolicFunctions<System.Double></InterfaceName>
</Interface>
<Interface FrameworkAlternate="net-7.0;net-8.0;net-9.0">
<InterfaceName>System.Numerics.IHyperbolicFunctions<TSelf></InterfaceName>
</Interface>
<Interface FrameworkAlternate="net-7.0;net-8.0;net-9.0">
<InterfaceName>System.Numerics.IIncrementOperators<System.Double></InterfaceName>
</Interface>
<Interface FrameworkAlternate="net-7.0;net-8.0;net-9.0">
<InterfaceName>System.Numerics.IIncrementOperators<TSelf></InterfaceName>
</Interface>
<Interface FrameworkAlternate="net-7.0;net-8.0;net-9.0">
<InterfaceName>System.Numerics.ILogarithmicFunctions<System.Double></InterfaceName>
</Interface>
<Interface FrameworkAlternate="net-7.0;net-8.0;net-9.0">
<InterfaceName>System.Numerics.ILogarithmicFunctions<TSelf></InterfaceName>
</Interface>
<Interface FrameworkAlternate="net-7.0;net-8.0;net-9.0">
<InterfaceName>System.Numerics.IMinMaxValue<System.Double></InterfaceName>
</Interface>
<Interface FrameworkAlternate="net-7.0;net-8.0;net-9.0">
<InterfaceName>System.Numerics.IModulusOperators<System.Double,System.Double,System.Double></InterfaceName>
</Interface>
<Interface FrameworkAlternate="net-7.0;net-8.0;net-9.0">
<InterfaceName>System.Numerics.IModulusOperators<TSelf,TSelf,TSelf></InterfaceName>
</Interface>
<Interface FrameworkAlternate="net-7.0;net-8.0;net-9.0">
<InterfaceName>System.Numerics.IMultiplicativeIdentity<System.Double,System.Double></InterfaceName>
</Interface>
<Interface FrameworkAlternate="net-7.0;net-8.0;net-9.0">
<InterfaceName>System.Numerics.IMultiplicativeIdentity<TSelf,TSelf></InterfaceName>
</Interface>
<Interface FrameworkAlternate="net-7.0;net-8.0;net-9.0">
<InterfaceName>System.Numerics.IMultiplyOperators<System.Double,System.Double,System.Double></InterfaceName>
</Interface>
<Interface FrameworkAlternate="net-7.0;net-8.0;net-9.0">
<InterfaceName>System.Numerics.IMultiplyOperators<TSelf,TSelf,TSelf></InterfaceName>
</Interface>
<Interface FrameworkAlternate="net-7.0;net-8.0;net-9.0">
<InterfaceName>System.Numerics.INumber<System.Double></InterfaceName>
</Interface>
<Interface FrameworkAlternate="net-7.0;net-8.0;net-9.0">
<InterfaceName>System.Numerics.INumber<TSelf></InterfaceName>
</Interface>
<Interface FrameworkAlternate="net-7.0;net-8.0;net-9.0">
<InterfaceName>System.Numerics.INumberBase<System.Double></InterfaceName>
</Interface>
<Interface FrameworkAlternate="net-7.0;net-8.0;net-9.0">
<InterfaceName>System.Numerics.INumberBase<TSelf></InterfaceName>
</Interface>
<Interface FrameworkAlternate="net-7.0;net-8.0;net-9.0">
<InterfaceName>System.Numerics.IPowerFunctions<System.Double></InterfaceName>
</Interface>
<Interface FrameworkAlternate="net-7.0;net-8.0;net-9.0">
<InterfaceName>System.Numerics.IPowerFunctions<TSelf></InterfaceName>
</Interface>
<Interface FrameworkAlternate="net-7.0;net-8.0;net-9.0">
<InterfaceName>System.Numerics.IRootFunctions<System.Double></InterfaceName>
</Interface>
<Interface FrameworkAlternate="net-7.0;net-8.0;net-9.0">
<InterfaceName>System.Numerics.IRootFunctions<TSelf></InterfaceName>
</Interface>
<Interface FrameworkAlternate="net-7.0;net-8.0;net-9.0">
<InterfaceName>System.Numerics.ISignedNumber<System.Double></InterfaceName>
</Interface>
<Interface FrameworkAlternate="net-7.0;net-8.0;net-9.0">
<InterfaceName>System.Numerics.ISignedNumber<TSelf></InterfaceName>
</Interface>
<Interface FrameworkAlternate="net-7.0;net-8.0;net-9.0">
<InterfaceName>System.Numerics.ISubtractionOperators<System.Double,System.Double,System.Double></InterfaceName>
</Interface>
<Interface FrameworkAlternate="net-7.0;net-8.0;net-9.0">
<InterfaceName>System.Numerics.ISubtractionOperators<TSelf,TSelf,TSelf></InterfaceName>
</Interface>
<Interface FrameworkAlternate="net-7.0;net-8.0;net-9.0">
<InterfaceName>System.Numerics.ITrigonometricFunctions<System.Double></InterfaceName>
</Interface>
<Interface FrameworkAlternate="net-7.0;net-8.0;net-9.0">
<InterfaceName>System.Numerics.ITrigonometricFunctions<TSelf></InterfaceName>
</Interface>
<Interface FrameworkAlternate="net-7.0;net-8.0;net-9.0">
<InterfaceName>System.Numerics.IUnaryNegationOperators<System.Double,System.Double></InterfaceName>
</Interface>
<Interface FrameworkAlternate="net-7.0;net-8.0;net-9.0">
<InterfaceName>System.Numerics.IUnaryNegationOperators<TSelf,TSelf></InterfaceName>
</Interface>
<Interface FrameworkAlternate="net-7.0;net-8.0;net-9.0">
<InterfaceName>System.Numerics.IUnaryPlusOperators<System.Double,System.Double></InterfaceName>
</Interface>
<Interface FrameworkAlternate="net-7.0;net-8.0;net-9.0">
<InterfaceName>System.Numerics.IUnaryPlusOperators<TSelf,TSelf></InterfaceName>
</Interface>
<Interface FrameworkAlternate="net-8.0;net-9.0">
<InterfaceName>System.IUtf8SpanFormattable</InterfaceName>
</Interface>
<Interface FrameworkAlternate="net-8.0;net-9.0">
<InterfaceName>System.IUtf8SpanParsable<System.Double></InterfaceName>
</Interface>
<Interface FrameworkAlternate="net-8.0;net-9.0">
<InterfaceName>System.IUtf8SpanParsable<TSelf></InterfaceName>
</Interface>
</Interfaces>
<Attributes>
<Attribute FrameworkAlternate="net-5.0;net-6.0;net-7.0;net-8.0;net-9.0;netcore-3.0;netcore-3.1;netstandard-2.1">
<AttributeName Language="C#">[System.Runtime.CompilerServices.IsReadOnly]</AttributeName>
<AttributeName Language="F#">[<System.Runtime.CompilerServices.IsReadOnly>]</AttributeName>
</Attribute>
<Attribute FrameworkAlternate="netframework-1.1;netframework-2.0;netframework-3.0;netframework-3.5;netframework-4.0;netframework-4.5;netframework-4.5.1;netframework-4.5.2;netframework-4.6;netframework-4.6.1;netframework-4.6.2;netframework-4.7;netframework-4.7.1;netframework-4.7.2;netframework-4.8;netframework-4.8.1">
<AttributeName Language="C#">[System.Serializable]</AttributeName>
<AttributeName Language="F#">[<System.Serializable>]</AttributeName>
</Attribute>
<Attribute FrameworkAlternate="netframework-2.0;netframework-3.0;netframework-3.5;netframework-4.0;netframework-4.5;netframework-4.5.1;netframework-4.5.2;netframework-4.6;netframework-4.6.1;netframework-4.6.2;netframework-4.7;netframework-4.7.1;netframework-4.7.2;netframework-4.8;netframework-4.8.1">
<AttributeName Language="C#">[System.Runtime.InteropServices.ComVisible(true)]</AttributeName>
<AttributeName Language="F#">[<System.Runtime.InteropServices.ComVisible(true)>]</AttributeName>
</Attribute>
</Attributes>
<Docs>
<summary>Represents a double-precision floating-point number.</summary>
<remarks>For more information about this API, see <see href="/dotnet/fundamentals/runtime-libraries/system-double">Supplemental API remarks for Double</see>.</remarks>
<threadsafe>All members of this type are thread safe. Members that appear to modify instance state actually return a new instance initialized with the new value. As with any other type, reading and writing to a shared variable that contains an instance of this type must be protected by a lock to guarantee thread safety.</threadsafe>
<altmember cref="T:System.Decimal" />
<altmember cref="T:System.Single" />
<related type="ExternalDocumentation" href="https://learn.microsoft.com/samples/dotnet/samples/windowsforms-formatting-utility-cs/">Sample: .NET Core WinForms Formatting Utility (C#)</related>
<related type="ExternalDocumentation" href="https://learn.microsoft.com/samples/dotnet/samples/windowsforms-formatting-utility-vb/">Sample: .NET Core WinForms Formatting Utility (Visual Basic)</related>
</Docs>
<Members>
<Member MemberName="Abs">
<MemberSignature Language="C#" Value="public static double Abs (double value);" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig float64 Abs(float64 value) cil managed" />
<MemberSignature Language="DocId" Value="M:System.Double.Abs(System.Double)" />
<MemberSignature Language="VB.NET" Value="Public Shared Function Abs (value As Double) As Double" />
<MemberSignature Language="F#" Value="static member Abs : double -> double" Usage="System.double.Abs value" />
<MemberSignature Language="C++ CLI" Value="public:
 static double Abs(double value) = System::Numerics::INumberBase<double>::Abs;" />
<MemberType>Method</MemberType>
<Implements>
<InterfaceMember>M:System.Numerics.INumberBase`1.Abs(`0)</InterfaceMember>
</Implements>
<AssemblyInfo>
<AssemblyName>System.Runtime</AssemblyName>
<AssemblyVersion>7.0.0.0</AssemblyVersion>
<AssemblyVersion>8.0.0.0</AssemblyVersion>
<AssemblyVersion>9.0.0.0</AssemblyVersion>
</AssemblyInfo>
<AssemblyInfo>
<AssemblyName>mscorlib</AssemblyName>
</AssemblyInfo>
<AssemblyInfo>
<AssemblyName>netstandard</AssemblyName>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Double</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="value" Type="System.Double" Index="0" FrameworkAlternate="net-7.0;net-8.0;net-9.0" />
</Parameters>
<Docs>
<param name="value">The value for which to get its absolute.</param>
<summary>Computes the absolute of a value.</summary>
<returns>The absolute of <paramref name="value" />.</returns>
<remarks>To be added.</remarks>
<inheritdoc cref="M:System.Numerics.INumberBase`1.Abs(`0)" />
</Docs>
</Member>
<Member MemberName="Acos">
<MemberSignature Language="C#" Value="public static double Acos (double x);" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig float64 Acos(float64 x) cil managed" />
<MemberSignature Language="DocId" Value="M:System.Double.Acos(System.Double)" />
<MemberSignature Language="VB.NET" Value="Public Shared Function Acos (x As Double) As Double" />
<MemberSignature Language="F#" Value="static member Acos : double -> double" Usage="System.double.Acos x" />
<MemberSignature Language="C++ CLI" Value="public:
 static double Acos(double x) = System::Numerics::ITrigonometricFunctions<double>::Acos;" />
<MemberType>Method</MemberType>
<Implements>
<InterfaceMember>M:System.Numerics.ITrigonometricFunctions`1.Acos(`0)</InterfaceMember>
</Implements>
<AssemblyInfo>
<AssemblyName>System.Runtime</AssemblyName>
<AssemblyVersion>7.0.0.0</AssemblyVersion>
<AssemblyVersion>8.0.0.0</AssemblyVersion>
<AssemblyVersion>9.0.0.0</AssemblyVersion>
</AssemblyInfo>
<AssemblyInfo>
<AssemblyName>mscorlib</AssemblyName>
</AssemblyInfo>
<AssemblyInfo>
<AssemblyName>netstandard</AssemblyName>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Double</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="x" Type="System.Double" Index="0" FrameworkAlternate="net-7.0;net-8.0;net-9.0" />
</Parameters>
<Docs>
<param name="x">The value, in radians, whose arc-cosine is to be computed.</param>
<summary>Computes the arc-cosine of a value.</summary>
<returns>The arc-cosine of <paramref name="x" />.</returns>
<remarks>
<format type="text/markdown"><![CDATA[
## Remarks
This computes `arccos(x)` in the interval `[+0, +π]` radians.
]]></format>
</remarks>
<inheritdoc cref="M:System.Numerics.ITrigonometricFunctions`1.Acos(`0)" />
</Docs>
</Member>
<Member MemberName="Acosh">
<MemberSignature Language="C#" Value="public static double Acosh (double x);" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig float64 Acosh(float64 x) cil managed" />
<MemberSignature Language="DocId" Value="M:System.Double.Acosh(System.Double)" />
<MemberSignature Language="VB.NET" Value="Public Shared Function Acosh (x As Double) As Double" />
<MemberSignature Language="F#" Value="static member Acosh : double -> double" Usage="System.double.Acosh x" />
<MemberSignature Language="C++ CLI" Value="public:
 static double Acosh(double x) = System::Numerics::IHyperbolicFunctions<double>::Acosh;" />
<MemberType>Method</MemberType>
<Implements>
<InterfaceMember>M:System.Numerics.IHyperbolicFunctions`1.Acosh(`0)</InterfaceMember>
</Implements>
<AssemblyInfo>
<AssemblyName>System.Runtime</AssemblyName>
<AssemblyVersion>7.0.0.0</AssemblyVersion>
<AssemblyVersion>8.0.0.0</AssemblyVersion>
<AssemblyVersion>9.0.0.0</AssemblyVersion>
</AssemblyInfo>
<AssemblyInfo>
<AssemblyName>mscorlib</AssemblyName>
</AssemblyInfo>
<AssemblyInfo>
<AssemblyName>netstandard</AssemblyName>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Double</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="x" Type="System.Double" Index="0" FrameworkAlternate="net-7.0;net-8.0;net-9.0" />
</Parameters>
<Docs>
<param name="x">The value, in radians, whose hyperbolic arc-cosine is to be computed.</param>
<summary>Computes the hyperbolic arc-cosine of a value.</summary>
<returns>The hyperbolic arc-cosine of <paramref name="x" />.</returns>
<remarks>To be added.</remarks>
<inheritdoc cref="M:System.Numerics.IHyperbolicFunctions`1.Acosh(`0)" />
</Docs>
</Member>
<Member MemberName="AcosPi">
<MemberSignature Language="C#" Value="public static double AcosPi (double x);" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig float64 AcosPi(float64 x) cil managed" />
<MemberSignature Language="DocId" Value="M:System.Double.AcosPi(System.Double)" />
<MemberSignature Language="VB.NET" Value="Public Shared Function AcosPi (x As Double) As Double" />
<MemberSignature Language="F#" Value="static member AcosPi : double -> double" Usage="System.double.AcosPi x" />
<MemberSignature Language="C++ CLI" Value="public:
 static double AcosPi(double x) = System::Numerics::ITrigonometricFunctions<double>::AcosPi;" />
<MemberType>Method</MemberType>
<Implements>
<InterfaceMember>M:System.Numerics.ITrigonometricFunctions`1.AcosPi(`0)</InterfaceMember>
</Implements>
<AssemblyInfo>
<AssemblyName>System.Runtime</AssemblyName>
<AssemblyVersion>7.0.0.0</AssemblyVersion>
<AssemblyVersion>8.0.0.0</AssemblyVersion>
<AssemblyVersion>9.0.0.0</AssemblyVersion>
</AssemblyInfo>
<AssemblyInfo>
<AssemblyName>mscorlib</AssemblyName>
</AssemblyInfo>
<AssemblyInfo>
<AssemblyName>netstandard</AssemblyName>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Double</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="x" Type="System.Double" Index="0" FrameworkAlternate="net-7.0;net-8.0;net-9.0" />
</Parameters>
<Docs>
<param name="x">The value whose arc-cosine is to be computed.</param>
<summary>Computes the arc-cosine of a value and divides the result by <c>pi</c>.</summary>
<returns>The arc-cosine of <paramref name="x" />, divided by <c>pi</c>.</returns>
<remarks>
<format type="text/markdown"><![CDATA[
## Remarks
This computes `arccos(x) / π` in the interval `[-0.5, +0.5]`.
]]></format>
</remarks>
<inheritdoc cref="M:System.Numerics.ITrigonometricFunctions`1.AcosPi(`0)" />
</Docs>
</Member>
<Member MemberName="Asin">
<MemberSignature Language="C#" Value="public static double Asin (double x);" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig float64 Asin(float64 x) cil managed" />
<MemberSignature Language="DocId" Value="M:System.Double.Asin(System.Double)" />
<MemberSignature Language="VB.NET" Value="Public Shared Function Asin (x As Double) As Double" />
<MemberSignature Language="F#" Value="static member Asin : double -> double" Usage="System.double.Asin x" />
<MemberSignature Language="C++ CLI" Value="public:
 static double Asin(double x) = System::Numerics::ITrigonometricFunctions<double>::Asin;" />
<MemberType>Method</MemberType>
<Implements>
<InterfaceMember>M:System.Numerics.ITrigonometricFunctions`1.Asin(`0)</InterfaceMember>
</Implements>
<AssemblyInfo>
<AssemblyName>System.Runtime</AssemblyName>
<AssemblyVersion>7.0.0.0</AssemblyVersion>
<AssemblyVersion>8.0.0.0</AssemblyVersion>
<AssemblyVersion>9.0.0.0</AssemblyVersion>
</AssemblyInfo>
<AssemblyInfo>
<AssemblyName>mscorlib</AssemblyName>
</AssemblyInfo>
<AssemblyInfo>
<AssemblyName>netstandard</AssemblyName>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Double</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="x" Type="System.Double" Index="0" FrameworkAlternate="net-7.0;net-8.0;net-9.0" />
</Parameters>
<Docs>
<param name="x">The value, in radians, whose arc-sine is to be computed.</param>
<summary>Computes the arc-sine of a value.</summary>
<returns>The arc-sine of <paramref name="x" />.</returns>
<remarks>
<format type="text/markdown"><![CDATA[
## Remarks
This computes `arcsin(x)` in the interval `[-π / 2, +π / 2]` radians.
]]></format>
</remarks>
<inheritdoc cref="M:System.Numerics.ITrigonometricFunctions`1.Asin(`0)" />
</Docs>
</Member>
<Member MemberName="Asinh">
<MemberSignature Language="C#" Value="public static double Asinh (double x);" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig float64 Asinh(float64 x) cil managed" />
<MemberSignature Language="DocId" Value="M:System.Double.Asinh(System.Double)" />
<MemberSignature Language="VB.NET" Value="Public Shared Function Asinh (x As Double) As Double" />
<MemberSignature Language="F#" Value="static member Asinh : double -> double" Usage="System.double.Asinh x" />
<MemberSignature Language="C++ CLI" Value="public:
 static double Asinh(double x) = System::Numerics::IHyperbolicFunctions<double>::Asinh;" />
<MemberType>Method</MemberType>
<Implements>
<InterfaceMember>M:System.Numerics.IHyperbolicFunctions`1.Asinh(`0)</InterfaceMember>
</Implements>
<AssemblyInfo>
<AssemblyName>System.Runtime</AssemblyName>
<AssemblyVersion>7.0.0.0</AssemblyVersion>
<AssemblyVersion>8.0.0.0</AssemblyVersion>
<AssemblyVersion>9.0.0.0</AssemblyVersion>
</AssemblyInfo>
<AssemblyInfo>
<AssemblyName>mscorlib</AssemblyName>
</AssemblyInfo>
<AssemblyInfo>
<AssemblyName>netstandard</AssemblyName>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Double</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="x" Type="System.Double" Index="0" FrameworkAlternate="net-7.0;net-8.0;net-9.0" />
</Parameters>
<Docs>
<param name="x">The value, in radians, whose hyperbolic arc-sine is to be computed.</param>
<summary>Computes the hyperbolic arc-sine of a value.</summary>
<returns>The hyperbolic arc-sine of <paramref name="x" />.</returns>
<remarks>To be added.</remarks>
<inheritdoc cref="M:System.Numerics.IHyperbolicFunctions`1.Asinh(`0)" />
</Docs>
</Member>
<Member MemberName="AsinPi">
<MemberSignature Language="C#" Value="public static double AsinPi (double x);" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig float64 AsinPi(float64 x) cil managed" />
<MemberSignature Language="DocId" Value="M:System.Double.AsinPi(System.Double)" />
<MemberSignature Language="VB.NET" Value="Public Shared Function AsinPi (x As Double) As Double" />
<MemberSignature Language="F#" Value="static member AsinPi : double -> double" Usage="System.double.AsinPi x" />
<MemberSignature Language="C++ CLI" Value="public:
 static double AsinPi(double x) = System::Numerics::ITrigonometricFunctions<double>::AsinPi;" />
<MemberType>Method</MemberType>
<Implements>
<InterfaceMember>M:System.Numerics.ITrigonometricFunctions`1.AsinPi(`0)</InterfaceMember>
</Implements>
<AssemblyInfo>
<AssemblyName>System.Runtime</AssemblyName>
<AssemblyVersion>7.0.0.0</AssemblyVersion>
<AssemblyVersion>8.0.0.0</AssemblyVersion>
<AssemblyVersion>9.0.0.0</AssemblyVersion>
</AssemblyInfo>
<AssemblyInfo>
<AssemblyName>mscorlib</AssemblyName>
</AssemblyInfo>
<AssemblyInfo>
<AssemblyName>netstandard</AssemblyName>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Double</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="x" Type="System.Double" Index="0" FrameworkAlternate="net-7.0;net-8.0;net-9.0" />
</Parameters>
<Docs>
<param name="x">The value whose arc-sine is to be computed.</param>
<summary>Computes the arc-sine of a value and divides the result by <c>pi</c>.</summary>
<returns>The arc-sine of <paramref name="x" />, divided by <c>pi</c>.</returns>
<remarks>
<format type="text/markdown"><![CDATA[
## Remarks
This computes `arcsin(x) / π` in the interval `[-0.5, +0.5]`.
]]></format>
</remarks>
<inheritdoc cref="M:System.Numerics.ITrigonometricFunctions`1.AsinPi(`0)" />
</Docs>
</Member>
<Member MemberName="Atan">
<MemberSignature Language="C#" Value="public static double Atan (double x);" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig float64 Atan(float64 x) cil managed" />
<MemberSignature Language="DocId" Value="M:System.Double.Atan(System.Double)" />
<MemberSignature Language="VB.NET" Value="Public Shared Function Atan (x As Double) As Double" />
<MemberSignature Language="F#" Value="static member Atan : double -> double" Usage="System.double.Atan x" />
<MemberSignature Language="C++ CLI" Value="public:
 static double Atan(double x) = System::Numerics::ITrigonometricFunctions<double>::Atan;" />
<MemberType>Method</MemberType>
<Implements>
<InterfaceMember>M:System.Numerics.ITrigonometricFunctions`1.Atan(`0)</InterfaceMember>
</Implements>
<AssemblyInfo>
<AssemblyName>System.Runtime</AssemblyName>
<AssemblyVersion>7.0.0.0</AssemblyVersion>
<AssemblyVersion>8.0.0.0</AssemblyVersion>
<AssemblyVersion>9.0.0.0</AssemblyVersion>
</AssemblyInfo>
<AssemblyInfo>
<AssemblyName>mscorlib</AssemblyName>
</AssemblyInfo>
<AssemblyInfo>
<AssemblyName>netstandard</AssemblyName>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Double</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="x" Type="System.Double" Index="0" FrameworkAlternate="net-7.0;net-8.0;net-9.0" />
</Parameters>
<Docs>
<param name="x">The value, in radians, whose arc-tangent is to be computed.</param>
<summary>Computes the arc-tangent of a value.</summary>
<returns>The arc-tangent of <paramref name="x" />.</returns>
<remarks>
<format type="text/markdown"><![CDATA[
## Remarks
This computes `arctan(x)` in the interval `[-π / 2, +π / 2]` radians.
]]></format>
</remarks>
<inheritdoc cref="M:System.Numerics.ITrigonometricFunctions`1.Atan(`0)" />
</Docs>
</Member>
<Member MemberName="Atan2">
<MemberSignature Language="C#" Value="public static double Atan2 (double y, double x);" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig float64 Atan2(float64 y, float64 x) cil managed" />
<MemberSignature Language="DocId" Value="M:System.Double.Atan2(System.Double,System.Double)" />
<MemberSignature Language="VB.NET" Value="Public Shared Function Atan2 (y As Double, x As Double) As Double" />
<MemberSignature Language="F#" Value="static member Atan2 : double * double -> double" Usage="System.double.Atan2 (y, x)" />
<MemberSignature Language="C++ CLI" Value="public:
 static double Atan2(double y, double x) = System::Numerics::IFloatingPointIeee754<double>::Atan2;" />
<MemberType>Method</MemberType>
<Implements>
<InterfaceMember>M:System.Numerics.IFloatingPointIeee754`1.Atan2(`0,`0)</InterfaceMember>
</Implements>
<AssemblyInfo>
<AssemblyName>System.Runtime</AssemblyName>
<AssemblyVersion>7.0.0.0</AssemblyVersion>
<AssemblyVersion>8.0.0.0</AssemblyVersion>
<AssemblyVersion>9.0.0.0</AssemblyVersion>
</AssemblyInfo>
<AssemblyInfo>
<AssemblyName>mscorlib</AssemblyName>
</AssemblyInfo>
<AssemblyInfo>
<AssemblyName>netstandard</AssemblyName>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Double</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="y" Type="System.Double" Index="0" FrameworkAlternate="net-7.0;net-8.0;net-9.0" />
<Parameter Name="x" Type="System.Double" Index="1" FrameworkAlternate="net-7.0;net-8.0;net-9.0" />
</Parameters>
<Docs>
<param name="y">The y-coordinate of a point.</param>
<param name="x">The x-coordinate of a point.</param>
<summary>Computes the arc-tangent of the quotient of two values.</summary>
<returns>The arc-tangent of <paramref name="y" /> divided-by <paramref name="x" />.</returns>
<remarks>
<format type="text/markdown"><![CDATA[
## Remarks
This computes `arctan(y / x)` in the interval `[-π, +π]` radians.
]]></format>
</remarks>
<inheritdoc cref="M:System.Numerics.IFloatingPointIeee754`1.Atan2(`0,`0)" />
</Docs>
</Member>
<Member MemberName="Atan2Pi">
<MemberSignature Language="C#" Value="public static double Atan2Pi (double y, double x);" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig float64 Atan2Pi(float64 y, float64 x) cil managed" />
<MemberSignature Language="DocId" Value="M:System.Double.Atan2Pi(System.Double,System.Double)" />
<MemberSignature Language="VB.NET" Value="Public Shared Function Atan2Pi (y As Double, x As Double) As Double" />
<MemberSignature Language="F#" Value="static member Atan2Pi : double * double -> double" Usage="System.double.Atan2Pi (y, x)" />
<MemberSignature Language="C++ CLI" Value="public:
 static double Atan2Pi(double y, double x) = System::Numerics::IFloatingPointIeee754<double>::Atan2Pi;" />
<MemberType>Method</MemberType>
<Implements>
<InterfaceMember>M:System.Numerics.IFloatingPointIeee754`1.Atan2Pi(`0,`0)</InterfaceMember>
</Implements>
<AssemblyInfo>
<AssemblyName>System.Runtime</AssemblyName>
<AssemblyVersion>7.0.0.0</AssemblyVersion>
<AssemblyVersion>8.0.0.0</AssemblyVersion>
<AssemblyVersion>9.0.0.0</AssemblyVersion>
</AssemblyInfo>
<AssemblyInfo>
<AssemblyName>mscorlib</AssemblyName>
</AssemblyInfo>
<AssemblyInfo>
<AssemblyName>netstandard</AssemblyName>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Double</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="y" Type="System.Double" Index="0" FrameworkAlternate="net-7.0;net-8.0;net-9.0" />
<Parameter Name="x" Type="System.Double" Index="1" FrameworkAlternate="net-7.0;net-8.0;net-9.0" />
</Parameters>
<Docs>
<param name="y">The y-coordinate of a point.</param>
<param name="x">The x-coordinate of a point.</param>
<summary>Computes the arc-tangent for the quotient of two values and divides the result by <c>pi</c>.</summary>
<returns>The arc-tangent of <paramref name="y" /> divided-by <paramref name="x" />, divided by <c>pi</c>.</returns>
<remarks>
<format type="text/markdown"><![CDATA[
## Remarks
This computes `arctan(y / x) / π` in the interval `[-1, +1]`.
]]></format>
</remarks>
<inheritdoc cref="M:System.Numerics.IFloatingPointIeee754`1.Atan2Pi(`0,`0)" />
</Docs>
</Member>
<Member MemberName="Atanh">
<MemberSignature Language="C#" Value="public static double Atanh (double x);" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig float64 Atanh(float64 x) cil managed" />
<MemberSignature Language="DocId" Value="M:System.Double.Atanh(System.Double)" />
<MemberSignature Language="VB.NET" Value="Public Shared Function Atanh (x As Double) As Double" />
<MemberSignature Language="F#" Value="static member Atanh : double -> double" Usage="System.double.Atanh x" />
<MemberSignature Language="C++ CLI" Value="public:
 static double Atanh(double x) = System::Numerics::IHyperbolicFunctions<double>::Atanh;" />
<MemberType>Method</MemberType>
<Implements>
<InterfaceMember>M:System.Numerics.IHyperbolicFunctions`1.Atanh(`0)</InterfaceMember>
</Implements>
<AssemblyInfo>
<AssemblyName>System.Runtime</AssemblyName>
<AssemblyVersion>7.0.0.0</AssemblyVersion>
<AssemblyVersion>8.0.0.0</AssemblyVersion>
<AssemblyVersion>9.0.0.0</AssemblyVersion>
</AssemblyInfo>
<AssemblyInfo>
<AssemblyName>mscorlib</AssemblyName>
</AssemblyInfo>
<AssemblyInfo>
<AssemblyName>netstandard</AssemblyName>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Double</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="x" Type="System.Double" Index="0" FrameworkAlternate="net-7.0;net-8.0;net-9.0" />
</Parameters>
<Docs>
<param name="x">The value, in radians, whose hyperbolic arc-tangent is to be computed.</param>
<summary>Computes the hyperbolic arc-tangent of a value.</summary>
<returns>The hyperbolic arc-tangent of <paramref name="x" />.</returns>
<remarks>To be added.</remarks>
<inheritdoc cref="M:System.Numerics.IHyperbolicFunctions`1.Atanh(`0)" />
</Docs>
</Member>
<Member MemberName="AtanPi">
<MemberSignature Language="C#" Value="public static double AtanPi (double x);" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig float64 AtanPi(float64 x) cil managed" />
<MemberSignature Language="DocId" Value="M:System.Double.AtanPi(System.Double)" />
<MemberSignature Language="VB.NET" Value="Public Shared Function AtanPi (x As Double) As Double" />
<MemberSignature Language="F#" Value="static member AtanPi : double -> double" Usage="System.double.AtanPi x" />
<MemberSignature Language="C++ CLI" Value="public:
 static double AtanPi(double x) = System::Numerics::ITrigonometricFunctions<double>::AtanPi;" />
<MemberType>Method</MemberType>
<Implements>
<InterfaceMember>M:System.Numerics.ITrigonometricFunctions`1.AtanPi(`0)</InterfaceMember>
</Implements>
<AssemblyInfo>
<AssemblyName>System.Runtime</AssemblyName>
<AssemblyVersion>7.0.0.0</AssemblyVersion>
<AssemblyVersion>8.0.0.0</AssemblyVersion>
<AssemblyVersion>9.0.0.0</AssemblyVersion>
</AssemblyInfo>
<AssemblyInfo>
<AssemblyName>mscorlib</AssemblyName>
</AssemblyInfo>
<AssemblyInfo>
<AssemblyName>netstandard</AssemblyName>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Double</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="x" Type="System.Double" Index="0" FrameworkAlternate="net-7.0;net-8.0;net-9.0" />
</Parameters>
<Docs>
<param name="x">The value whose arc-tangent is to be computed.</param>
<summary>Computes the arc-tangent of a value and divides the result by pi.</summary>
<returns>The arc-tangent of <paramref name="x" />, divided by <c>pi</c>.</returns>
<remarks>
<format type="text/markdown"><![CDATA[
## Remarks
This computes `arctan(x) / π` in the interval `[-0.5, +0.5]`.
]]></format>
</remarks>
<inheritdoc cref="M:System.Numerics.ITrigonometricFunctions`1.AtanPi(`0)" />
</Docs>
</Member>
<Member MemberName="BitDecrement">
<MemberSignature Language="C#" Value="public static double BitDecrement (double x);" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig float64 BitDecrement(float64 x) cil managed" />
<MemberSignature Language="DocId" Value="M:System.Double.BitDecrement(System.Double)" />
<MemberSignature Language="VB.NET" Value="Public Shared Function BitDecrement (x As Double) As Double" />
<MemberSignature Language="F#" Value="static member BitDecrement : double -> double" Usage="System.double.BitDecrement x" />
<MemberSignature Language="C++ CLI" Value="public:
 static double BitDecrement(double x) = System::Numerics::IFloatingPointIeee754<double>::BitDecrement;" />
<MemberType>Method</MemberType>
<Implements>
<InterfaceMember>M:System.Numerics.IFloatingPointIeee754`1.BitDecrement(`0)</InterfaceMember>
</Implements>
<AssemblyInfo>
<AssemblyName>System.Runtime</AssemblyName>
<AssemblyVersion>7.0.0.0</AssemblyVersion>
<AssemblyVersion>8.0.0.0</AssemblyVersion>
<AssemblyVersion>9.0.0.0</AssemblyVersion>
</AssemblyInfo>
<AssemblyInfo>
<AssemblyName>mscorlib</AssemblyName>
</AssemblyInfo>
<AssemblyInfo>
<AssemblyName>netstandard</AssemblyName>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Double</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="x" Type="System.Double" Index="0" FrameworkAlternate="net-7.0;net-8.0;net-9.0" />
</Parameters>
<Docs>
<param name="x">The value to be bitwise decremented.</param>
<summary>Decrements a value to the smallest value that compares less than a given value.</summary>
<returns>The smallest value that compares less than <paramref name="x" />.</returns>
<remarks>To be added.</remarks>
<inheritdoc cref="M:System.Numerics.IFloatingPointIeee754`1.BitDecrement(`0)" />
</Docs>
</Member>
<Member MemberName="BitIncrement">
<MemberSignature Language="C#" Value="public static double BitIncrement (double x);" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig float64 BitIncrement(float64 x) cil managed" />
<MemberSignature Language="DocId" Value="M:System.Double.BitIncrement(System.Double)" />
<MemberSignature Language="VB.NET" Value="Public Shared Function BitIncrement (x As Double) As Double" />
<MemberSignature Language="F#" Value="static member BitIncrement : double -> double" Usage="System.double.BitIncrement x" />
<MemberSignature Language="C++ CLI" Value="public:
 static double BitIncrement(double x) = System::Numerics::IFloatingPointIeee754<double>::BitIncrement;" />
<MemberType>Method</MemberType>
<Implements>
<InterfaceMember>M:System.Numerics.IFloatingPointIeee754`1.BitIncrement(`0)</InterfaceMember>
</Implements>
<AssemblyInfo>
<AssemblyName>System.Runtime</AssemblyName>
<AssemblyVersion>7.0.0.0</AssemblyVersion>
<AssemblyVersion>8.0.0.0</AssemblyVersion>
<AssemblyVersion>9.0.0.0</AssemblyVersion>
</AssemblyInfo>
<AssemblyInfo>
<AssemblyName>mscorlib</AssemblyName>
</AssemblyInfo>
<AssemblyInfo>
<AssemblyName>netstandard</AssemblyName>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Double</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="x" Type="System.Double" Index="0" FrameworkAlternate="net-7.0;net-8.0;net-9.0" />
</Parameters>
<Docs>
<param name="x">The value to be bitwise incremented.</param>
<summary>Increments a value to the smallest value that compares greater than a given value.</summary>
<returns>The smallest value that compares greater than <paramref name="x" />.</returns>
<remarks>To be added.</remarks>
<inheritdoc cref="M:System.Numerics.IFloatingPointIeee754`1.BitIncrement(`0)" />
</Docs>
</Member>
<Member MemberName="Cbrt">
<MemberSignature Language="C#" Value="public static double Cbrt (double x);" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig float64 Cbrt(float64 x) cil managed" />
<MemberSignature Language="DocId" Value="M:System.Double.Cbrt(System.Double)" />
<MemberSignature Language="VB.NET" Value="Public Shared Function Cbrt (x As Double) As Double" />
<MemberSignature Language="F#" Value="static member Cbrt : double -> double" Usage="System.double.Cbrt x" />
<MemberSignature Language="C++ CLI" Value="public:
 static double Cbrt(double x) = System::Numerics::IRootFunctions<double>::Cbrt;" />
<MemberType>Method</MemberType>
<Implements>
<InterfaceMember>M:System.Numerics.IRootFunctions`1.Cbrt(`0)</InterfaceMember>
</Implements>
<AssemblyInfo>
<AssemblyName>System.Runtime</AssemblyName>
<AssemblyVersion>7.0.0.0</AssemblyVersion>
<AssemblyVersion>8.0.0.0</AssemblyVersion>
<AssemblyVersion>9.0.0.0</AssemblyVersion>
</AssemblyInfo>
<AssemblyInfo>
<AssemblyName>mscorlib</AssemblyName>
</AssemblyInfo>
<AssemblyInfo>
<AssemblyName>netstandard</AssemblyName>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Double</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="x" Type="System.Double" Index="0" FrameworkAlternate="net-7.0;net-8.0;net-9.0" />
</Parameters>
<Docs>
<param name="x">The value whose cube-root is to be computed.</param>
<summary>Computes the cube-root of a value.</summary>
<returns>The cube-root of <paramref name="x" />.</returns>
<remarks>To be added.</remarks>
<inheritdoc cref="M:System.Numerics.IRootFunctions`1.Cbrt(`0)" />
</Docs>
</Member>
<Member MemberName="Ceiling">
<MemberSignature Language="C#" Value="public static double Ceiling (double x);" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig float64 Ceiling(float64 x) cil managed" />
<MemberSignature Language="DocId" Value="M:System.Double.Ceiling(System.Double)" />
<MemberSignature Language="VB.NET" Value="Public Shared Function Ceiling (x As Double) As Double" />
<MemberSignature Language="F#" Value="static member Ceiling : double -> double" Usage="System.double.Ceiling x" />
<MemberSignature Language="C++ CLI" Value="public:
 static double Ceiling(double x) = System::Numerics::IFloatingPoint<double>::Ceiling;" />
<MemberType>Method</MemberType>
<Implements>
<InterfaceMember>M:System.Numerics.IFloatingPoint`1.Ceiling(`0)</InterfaceMember>
</Implements>
<AssemblyInfo>
<AssemblyName>System.Runtime</AssemblyName>
<AssemblyVersion>7.0.0.0</AssemblyVersion>
<AssemblyVersion>8.0.0.0</AssemblyVersion>
<AssemblyVersion>9.0.0.0</AssemblyVersion>
</AssemblyInfo>
<AssemblyInfo>
<AssemblyName>mscorlib</AssemblyName>
</AssemblyInfo>
<AssemblyInfo>
<AssemblyName>netstandard</AssemblyName>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Double</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="x" Type="System.Double" Index="0" FrameworkAlternate="net-7.0;net-8.0;net-9.0" />
</Parameters>
<Docs>
<param name="x">The value whose ceiling is to be computed.</param>
<summary>Computes the ceiling of a value.</summary>
<returns>The ceiling of <paramref name="x" />.</returns>
<remarks>To be added.</remarks>
<inheritdoc cref="M:System.Numerics.IFloatingPoint`1.Ceiling(`0)" />
</Docs>
</Member>
<Member MemberName="Clamp">
<MemberSignature Language="C#" Value="public static double Clamp (double value, double min, double max);" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig float64 Clamp(float64 value, float64 min, float64 max) cil managed" />
<MemberSignature Language="DocId" Value="M:System.Double.Clamp(System.Double,System.Double,System.Double)" />
<MemberSignature Language="VB.NET" Value="Public Shared Function Clamp (value As Double, min As Double, max As Double) As Double" />
<MemberSignature Language="F#" Value="static member Clamp : double * double * double -> double" Usage="System.double.Clamp (value, min, max)" />
<MemberSignature Language="C++ CLI" Value="public:
 static double Clamp(double value, double min, double max) = System::Numerics::INumber<double>::Clamp;" />
<MemberType>Method</MemberType>
<Implements>
<InterfaceMember>M:System.Numerics.INumber`1.Clamp(`0,`0,`0)</InterfaceMember>
</Implements>
<AssemblyInfo>
<AssemblyName>System.Runtime</AssemblyName>
<AssemblyVersion>7.0.0.0</AssemblyVersion>
<AssemblyVersion>8.0.0.0</AssemblyVersion>
<AssemblyVersion>9.0.0.0</AssemblyVersion>
</AssemblyInfo>
<AssemblyInfo>
<AssemblyName>mscorlib</AssemblyName>
</AssemblyInfo>
<AssemblyInfo>
<AssemblyName>netstandard</AssemblyName>
</AssemblyInfo>
<ReturnValue>