-
Notifications
You must be signed in to change notification settings - Fork 1.6k
/
Copy pathSingle.xml
10310 lines (9871 loc) · 699 KB
/
Single.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="Single" FullName="System.Single">
<TypeSignature Language="C#" Value="public struct Single : IComparable, IComparable<float>, IConvertible, IEquatable<float>, 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 float32 extends System.ValueType implements class System.IComparable, class System.IComparable`1<float32>, class System.IConvertible, class System.IEquatable`1<float32>, 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.Single" />
<TypeSignature Language="VB.NET" Value="Public Structure Single
Implements IComparable, IComparable(Of Single), IConvertible, IEquatable(Of Single), 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 single = 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 float : IComparable, IComparable<float>, IConvertible, IEquatable<float>, 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 Single : IComparable, IComparable<float>, IConvertible, IEquatable<float>, IFormattable" FrameworkAlternate="net-5.0;netcore-3.0;netcore-3.1;netstandard-2.1" />
<TypeSignature Language="C#" Value="public readonly struct Single : IComparable, IComparable<float>, IConvertible, IEquatable<float>, ISpanFormattable" FrameworkAlternate="net-6.0" />
<TypeSignature Language="ILAsm" Value=".class public sequential ansi sealed beforefieldinit float32 extends System.ValueType implements class System.IComparable, class System.IComparable`1<float32>, class System.IConvertible, class System.IEquatable`1<float32>, class System.IFormattable, class System.ISpanFormattable" FrameworkAlternate="net-6.0" />
<TypeSignature Language="VB.NET" Value="Public Structure Single
Implements IComparable, IComparable(Of Single), IConvertible, IEquatable(Of Single), ISpanFormattable" FrameworkAlternate="net-6.0" />
<TypeSignature Language="F#" Value="type single = struct
 interface IConvertible
 interface ISpanFormattable
 interface IFormattable" FrameworkAlternate="net-6.0" />
<TypeSignature Language="C++ CLI" Value="public value class float : IComparable, IComparable<float>, IConvertible, IEquatable<float>, ISpanFormattable" FrameworkAlternate="net-6.0" />
<TypeSignature Language="C#" Value="public readonly struct Single : IComparable<float>, IConvertible, IEquatable<float>, IParsable<float>, ISpanParsable<float>, System.Numerics.IAdditionOperators<float,float,float>, System.Numerics.IAdditiveIdentity<float,float>, System.Numerics.IBinaryFloatingPointIeee754<float>, System.Numerics.IBinaryNumber<float>, System.Numerics.IBitwiseOperators<float,float,float>, System.Numerics.IComparisonOperators<float,float,bool>, System.Numerics.IDecrementOperators<float>, System.Numerics.IDivisionOperators<float,float,float>, System.Numerics.IEqualityOperators<float,float,bool>, System.Numerics.IExponentialFunctions<float>, System.Numerics.IFloatingPoint<float>, System.Numerics.IFloatingPointConstants<float>, System.Numerics.IFloatingPointIeee754<float>, System.Numerics.IHyperbolicFunctions<float>, System.Numerics.IIncrementOperators<float>, System.Numerics.ILogarithmicFunctions<float>, System.Numerics.IMinMaxValue<float>, System.Numerics.IModulusOperators<float,float,float>, System.Numerics.IMultiplicativeIdentity<float,float>, System.Numerics.IMultiplyOperators<float,float,float>, System.Numerics.INumber<float>, System.Numerics.INumberBase<float>, System.Numerics.IPowerFunctions<float>, System.Numerics.IRootFunctions<float>, System.Numerics.ISignedNumber<float>, System.Numerics.ISubtractionOperators<float,float,float>, System.Numerics.ITrigonometricFunctions<float>, System.Numerics.IUnaryNegationOperators<float,float>, System.Numerics.IUnaryPlusOperators<float,float>" FrameworkAlternate="net-7.0" />
<TypeSignature Language="ILAsm" Value=".class public sequential ansi sealed beforefieldinit float32 extends System.ValueType implements class System.IComparable, class System.IComparable`1<float32>, class System.IConvertible, class System.IEquatable`1<float32>, class System.IFormattable, class System.IParsable`1<float32>, class System.ISpanFormattable, class System.ISpanParsable`1<float32>, class System.Numerics.IAdditionOperators`3<float32, float32, float32>, class System.Numerics.IAdditiveIdentity`2<float32, float32>, class System.Numerics.IBinaryFloatingPointIeee754`1<float32>, class System.Numerics.IBinaryNumber`1<float32>, class System.Numerics.IBitwiseOperators`3<float32, float32, float32>, class System.Numerics.IComparisonOperators`3<float32, float32, bool>, class System.Numerics.IDecrementOperators`1<float32>, class System.Numerics.IDivisionOperators`3<float32, float32, float32>, class System.Numerics.IEqualityOperators`3<float32, float32, bool>, class System.Numerics.IExponentialFunctions`1<float32>, class System.Numerics.IFloatingPoint`1<float32>, class System.Numerics.IFloatingPointConstants`1<float32>, class System.Numerics.IFloatingPointIeee754`1<float32>, class System.Numerics.IHyperbolicFunctions`1<float32>, class System.Numerics.IIncrementOperators`1<float32>, class System.Numerics.ILogarithmicFunctions`1<float32>, class System.Numerics.IMinMaxValue`1<float32>, class System.Numerics.IModulusOperators`3<float32, float32, float32>, class System.Numerics.IMultiplicativeIdentity`2<float32, float32>, class System.Numerics.IMultiplyOperators`3<float32, float32, float32>, class System.Numerics.INumber`1<float32>, class System.Numerics.INumberBase`1<float32>, class System.Numerics.IPowerFunctions`1<float32>, class System.Numerics.IRootFunctions`1<float32>, class System.Numerics.ISignedNumber`1<float32>, class System.Numerics.ISubtractionOperators`3<float32, float32, float32>, class System.Numerics.ITrigonometricFunctions`1<float32>, class System.Numerics.IUnaryNegationOperators`2<float32, float32>, class System.Numerics.IUnaryPlusOperators`2<float32, float32>" FrameworkAlternate="net-7.0" />
<TypeSignature Language="VB.NET" Value="Public Structure Single
Implements IAdditionOperators(Of Single, Single, Single), IAdditiveIdentity(Of Single, Single), IBinaryFloatingPointIeee754(Of Single), IBinaryNumber(Of Single), IBitwiseOperators(Of Single, Single, Single), IComparable(Of Single), IComparisonOperators(Of Single, Single, Boolean), IConvertible, IDecrementOperators(Of Single), IDivisionOperators(Of Single, Single, Single), IEqualityOperators(Of Single, Single, Boolean), IEquatable(Of Single), IExponentialFunctions(Of Single), IFloatingPoint(Of Single), IFloatingPointConstants(Of Single), IFloatingPointIeee754(Of Single), IHyperbolicFunctions(Of Single), IIncrementOperators(Of Single), ILogarithmicFunctions(Of Single), IMinMaxValue(Of Single), IModulusOperators(Of Single, Single, Single), IMultiplicativeIdentity(Of Single, Single), IMultiplyOperators(Of Single, Single, Single), INumber(Of Single), INumberBase(Of Single), IParsable(Of Single), IPowerFunctions(Of Single), IRootFunctions(Of Single), ISignedNumber(Of Single), ISpanParsable(Of Single), ISubtractionOperators(Of Single, Single, Single), ITrigonometricFunctions(Of Single), IUnaryNegationOperators(Of Single, Single), IUnaryPlusOperators(Of Single, Single)" FrameworkAlternate="net-7.0" />
<TypeSignature Language="F#" Value="type single = struct
 interface IConvertible
 interface IFormattable
 interface IParsable<single>
 interface ISpanFormattable
 interface ISpanParsable<single>
 interface IAdditionOperators<single, single, single>
 interface IAdditiveIdentity<single, single>
 interface IBinaryFloatingPointIeee754<single>
 interface IBinaryNumber<single>
 interface IBitwiseOperators<single, single, single>
 interface IComparisonOperators<single, single, bool>
 interface IEqualityOperators<single, single, bool>
 interface IDecrementOperators<single>
 interface IDivisionOperators<single, single, single>
 interface IIncrementOperators<single>
 interface IModulusOperators<single, single, single>
 interface IMultiplicativeIdentity<single, single>
 interface IMultiplyOperators<single, single, single>
 interface INumber<single>
 interface INumberBase<single>
 interface ISubtractionOperators<single, single, single>
 interface IUnaryNegationOperators<single, single>
 interface IUnaryPlusOperators<single, single>
 interface IExponentialFunctions<single>
 interface IFloatingPointConstants<single>
 interface IFloatingPoint<single>
 interface ISignedNumber<single>
 interface IFloatingPointIeee754<single>
 interface IHyperbolicFunctions<single>
 interface ILogarithmicFunctions<single>
 interface IPowerFunctions<single>
 interface IRootFunctions<single>
 interface ITrigonometricFunctions<single>
 interface IMinMaxValue<single>" FrameworkAlternate="net-7.0" />
<TypeSignature Language="C++ CLI" Value="public value class float : IComparable<float>, IConvertible, IEquatable<float>, IParsable<float>, ISpanParsable<float>, System::Numerics::IAdditionOperators<float, float, float>, System::Numerics::IAdditiveIdentity<float, float>, System::Numerics::IBinaryFloatingPointIeee754<float>, System::Numerics::IBinaryNumber<float>, System::Numerics::IBitwiseOperators<float, float, float>, System::Numerics::IComparisonOperators<float, float, bool>, System::Numerics::IDecrementOperators<float>, System::Numerics::IDivisionOperators<float, float, float>, System::Numerics::IEqualityOperators<float, float, bool>, System::Numerics::IExponentialFunctions<float>, System::Numerics::IFloatingPoint<float>, System::Numerics::IFloatingPointConstants<float>, System::Numerics::IFloatingPointIeee754<float>, System::Numerics::IHyperbolicFunctions<float>, System::Numerics::IIncrementOperators<float>, System::Numerics::ILogarithmicFunctions<float>, System::Numerics::IMinMaxValue<float>, System::Numerics::IModulusOperators<float, float, float>, System::Numerics::IMultiplicativeIdentity<float, float>, System::Numerics::IMultiplyOperators<float, float, float>, System::Numerics::INumber<float>, System::Numerics::INumberBase<float>, System::Numerics::IPowerFunctions<float>, System::Numerics::IRootFunctions<float>, System::Numerics::ISignedNumber<float>, System::Numerics::ISubtractionOperators<float, float, float>, System::Numerics::ITrigonometricFunctions<float>, System::Numerics::IUnaryNegationOperators<float, float>, System::Numerics::IUnaryPlusOperators<float, float>" FrameworkAlternate="net-7.0" />
<TypeSignature Language="C#" Value="public readonly struct Single : IComparable<float>, IConvertible, IEquatable<float>, IParsable<float>, ISpanParsable<float>, IUtf8SpanParsable<float>, System.Numerics.IAdditionOperators<float,float,float>, System.Numerics.IAdditiveIdentity<float,float>, System.Numerics.IBinaryFloatingPointIeee754<float>, System.Numerics.IBinaryNumber<float>, System.Numerics.IBitwiseOperators<float,float,float>, System.Numerics.IComparisonOperators<float,float,bool>, System.Numerics.IDecrementOperators<float>, System.Numerics.IDivisionOperators<float,float,float>, System.Numerics.IEqualityOperators<float,float,bool>, System.Numerics.IExponentialFunctions<float>, System.Numerics.IFloatingPoint<float>, System.Numerics.IFloatingPointConstants<float>, System.Numerics.IFloatingPointIeee754<float>, System.Numerics.IHyperbolicFunctions<float>, System.Numerics.IIncrementOperators<float>, System.Numerics.ILogarithmicFunctions<float>, System.Numerics.IMinMaxValue<float>, System.Numerics.IModulusOperators<float,float,float>, System.Numerics.IMultiplicativeIdentity<float,float>, System.Numerics.IMultiplyOperators<float,float,float>, System.Numerics.INumber<float>, System.Numerics.INumberBase<float>, System.Numerics.IPowerFunctions<float>, System.Numerics.IRootFunctions<float>, System.Numerics.ISignedNumber<float>, System.Numerics.ISubtractionOperators<float,float,float>, System.Numerics.ITrigonometricFunctions<float>, System.Numerics.IUnaryNegationOperators<float,float>, System.Numerics.IUnaryPlusOperators<float,float>" FrameworkAlternate="net-8.0;net-9.0" />
<TypeSignature Language="ILAsm" Value=".class public sequential ansi sealed beforefieldinit float32 extends System.ValueType implements class System.IComparable, class System.IComparable`1<float32>, class System.IConvertible, class System.IEquatable`1<float32>, class System.IFormattable, class System.IParsable`1<float32>, class System.ISpanFormattable, class System.ISpanParsable`1<float32>, class System.IUtf8SpanFormattable, class System.IUtf8SpanParsable`1<float32>, class System.Numerics.IAdditionOperators`3<float32, float32, float32>, class System.Numerics.IAdditiveIdentity`2<float32, float32>, class System.Numerics.IBinaryFloatingPointIeee754`1<float32>, class System.Numerics.IBinaryNumber`1<float32>, class System.Numerics.IBitwiseOperators`3<float32, float32, float32>, class System.Numerics.IComparisonOperators`3<float32, float32, bool>, class System.Numerics.IDecrementOperators`1<float32>, class System.Numerics.IDivisionOperators`3<float32, float32, float32>, class System.Numerics.IEqualityOperators`3<float32, float32, bool>, class System.Numerics.IExponentialFunctions`1<float32>, class System.Numerics.IFloatingPoint`1<float32>, class System.Numerics.IFloatingPointConstants`1<float32>, class System.Numerics.IFloatingPointIeee754`1<float32>, class System.Numerics.IHyperbolicFunctions`1<float32>, class System.Numerics.IIncrementOperators`1<float32>, class System.Numerics.ILogarithmicFunctions`1<float32>, class System.Numerics.IMinMaxValue`1<float32>, class System.Numerics.IModulusOperators`3<float32, float32, float32>, class System.Numerics.IMultiplicativeIdentity`2<float32, float32>, class System.Numerics.IMultiplyOperators`3<float32, float32, float32>, class System.Numerics.INumber`1<float32>, class System.Numerics.INumberBase`1<float32>, class System.Numerics.IPowerFunctions`1<float32>, class System.Numerics.IRootFunctions`1<float32>, class System.Numerics.ISignedNumber`1<float32>, class System.Numerics.ISubtractionOperators`3<float32, float32, float32>, class System.Numerics.ITrigonometricFunctions`1<float32>, class System.Numerics.IUnaryNegationOperators`2<float32, float32>, class System.Numerics.IUnaryPlusOperators`2<float32, float32>" FrameworkAlternate="net-8.0;net-9.0" />
<TypeSignature Language="VB.NET" Value="Public Structure Single
Implements IAdditionOperators(Of Single, Single, Single), IAdditiveIdentity(Of Single, Single), IBinaryFloatingPointIeee754(Of Single), IBinaryNumber(Of Single), IBitwiseOperators(Of Single, Single, Single), IComparable(Of Single), IComparisonOperators(Of Single, Single, Boolean), IConvertible, IDecrementOperators(Of Single), IDivisionOperators(Of Single, Single, Single), IEqualityOperators(Of Single, Single, Boolean), IEquatable(Of Single), IExponentialFunctions(Of Single), IFloatingPoint(Of Single), IFloatingPointConstants(Of Single), IFloatingPointIeee754(Of Single), IHyperbolicFunctions(Of Single), IIncrementOperators(Of Single), ILogarithmicFunctions(Of Single), IMinMaxValue(Of Single), IModulusOperators(Of Single, Single, Single), IMultiplicativeIdentity(Of Single, Single), IMultiplyOperators(Of Single, Single, Single), INumber(Of Single), INumberBase(Of Single), IParsable(Of Single), IPowerFunctions(Of Single), IRootFunctions(Of Single), ISignedNumber(Of Single), ISpanParsable(Of Single), ISubtractionOperators(Of Single, Single, Single), ITrigonometricFunctions(Of Single), IUnaryNegationOperators(Of Single, Single), IUnaryPlusOperators(Of Single, Single), IUtf8SpanParsable(Of Single)" FrameworkAlternate="net-8.0;net-9.0" />
<TypeSignature Language="F#" Value="type single = struct
 interface IConvertible
 interface IFormattable
 interface IParsable<single>
 interface ISpanFormattable
 interface ISpanParsable<single>
 interface IAdditionOperators<single, single, single>
 interface IAdditiveIdentity<single, single>
 interface IBinaryFloatingPointIeee754<single>
 interface IBinaryNumber<single>
 interface IBitwiseOperators<single, single, single>
 interface IComparisonOperators<single, single, bool>
 interface IEqualityOperators<single, single, bool>
 interface IDecrementOperators<single>
 interface IDivisionOperators<single, single, single>
 interface IIncrementOperators<single>
 interface IModulusOperators<single, single, single>
 interface IMultiplicativeIdentity<single, single>
 interface IMultiplyOperators<single, single, single>
 interface INumber<single>
 interface INumberBase<single>
 interface ISubtractionOperators<single, single, single>
 interface IUnaryNegationOperators<single, single>
 interface IUnaryPlusOperators<single, single>
 interface IUtf8SpanFormattable
 interface IUtf8SpanParsable<single>
 interface IExponentialFunctions<single>
 interface IFloatingPointConstants<single>
 interface IFloatingPoint<single>
 interface ISignedNumber<single>
 interface IFloatingPointIeee754<single>
 interface IHyperbolicFunctions<single>
 interface ILogarithmicFunctions<single>
 interface IPowerFunctions<single>
 interface IRootFunctions<single>
 interface ITrigonometricFunctions<single>
 interface IMinMaxValue<single>" FrameworkAlternate="net-8.0" />
<TypeSignature Language="C++ CLI" Value="public value class float : IComparable<float>, IConvertible, IEquatable<float>, IParsable<float>, ISpanParsable<float>, IUtf8SpanParsable<float>, System::Numerics::IAdditionOperators<float, float, float>, System::Numerics::IAdditiveIdentity<float, float>, System::Numerics::IBinaryFloatingPointIeee754<float>, System::Numerics::IBinaryNumber<float>, System::Numerics::IBitwiseOperators<float, float, float>, System::Numerics::IComparisonOperators<float, float, bool>, System::Numerics::IDecrementOperators<float>, System::Numerics::IDivisionOperators<float, float, float>, System::Numerics::IEqualityOperators<float, float, bool>, System::Numerics::IExponentialFunctions<float>, System::Numerics::IFloatingPoint<float>, System::Numerics::IFloatingPointConstants<float>, System::Numerics::IFloatingPointIeee754<float>, System::Numerics::IHyperbolicFunctions<float>, System::Numerics::IIncrementOperators<float>, System::Numerics::ILogarithmicFunctions<float>, System::Numerics::IMinMaxValue<float>, System::Numerics::IModulusOperators<float, float, float>, System::Numerics::IMultiplicativeIdentity<float, float>, System::Numerics::IMultiplyOperators<float, float, float>, System::Numerics::INumber<float>, System::Numerics::INumberBase<float>, System::Numerics::IPowerFunctions<float>, System::Numerics::IRootFunctions<float>, System::Numerics::ISignedNumber<float>, System::Numerics::ISubtractionOperators<float, float, float>, System::Numerics::ITrigonometricFunctions<float>, System::Numerics::IUnaryNegationOperators<float, float>, System::Numerics::IUnaryPlusOperators<float, float>" FrameworkAlternate="net-8.0;net-9.0" />
<TypeSignature Language="F#" Value="type single = struct
 interface IConvertible
 interface IFormattable
 interface IParsable<single>
 interface ISpanFormattable
 interface ISpanParsable<single>
 interface IUtf8SpanFormattable
 interface IUtf8SpanParsable<single>
 interface IAdditionOperators<single, single, single>
 interface IAdditiveIdentity<single, single>
 interface IBinaryFloatingPointIeee754<single>
 interface IBinaryNumber<single>
 interface IBitwiseOperators<single, single, single>
 interface IComparisonOperators<single, single, bool>
 interface IEqualityOperators<single, single, bool>
 interface IDecrementOperators<single>
 interface IDivisionOperators<single, single, single>
 interface IIncrementOperators<single>
 interface IModulusOperators<single, single, single>
 interface IMultiplicativeIdentity<single, single>
 interface IMultiplyOperators<single, single, single>
 interface INumber<single>
 interface INumberBase<single>
 interface ISubtractionOperators<single, single, single>
 interface IUnaryNegationOperators<single, single>
 interface IUnaryPlusOperators<single, single>
 interface IExponentialFunctions<single>
 interface IFloatingPointConstants<single>
 interface IFloatingPoint<single>
 interface ISignedNumber<single>
 interface IFloatingPointIeee754<single>
 interface IHyperbolicFunctions<single>
 interface ILogarithmicFunctions<single>
 interface IPowerFunctions<single>
 interface IRootFunctions<single>
 interface ITrigonometricFunctions<single>
 interface IMinMaxValue<single>" FrameworkAlternate="net-9.0" />
<TypeSignature Language="C#" Value="public struct Single : IComparable, IConvertible, IFormattable" FrameworkAlternate="netframework-1.1" />
<TypeSignature Language="ILAsm" Value=".class public sequential ansi serializable sealed beforefieldinit float32 extends System.ValueType implements class System.IComparable, class System.IConvertible, class System.IFormattable" FrameworkAlternate="netframework-1.1" />
<TypeSignature Language="VB.NET" Value="Public Structure Single
Implements IComparable, IConvertible, IFormattable" FrameworkAlternate="netframework-1.1" />
<TypeSignature Language="F#" Value="type single = 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 float : IComparable, IConvertible, IFormattable" FrameworkAlternate="netframework-1.1" />
<TypeSignature Language="ILAsm" Value=".class public sequential ansi serializable sealed beforefieldinit float32 extends System.ValueType implements class System.IComparable, class System.IComparable`1<float32>, class System.IConvertible, class System.IEquatable`1<float32>, 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 Single : IComparable, IComparable<float>, IEquatable<float>, IFormattable" FrameworkAlternate="netstandard-1.0;netstandard-1.1;netstandard-1.2" />
<TypeSignature Language="ILAsm" Value=".class public sequential ansi sealed beforefieldinit float32 extends System.ValueType implements class System.IComparable, class System.IComparable`1<float32>, class System.IEquatable`1<float32>, class System.IFormattable" FrameworkAlternate="netstandard-1.0;netstandard-1.1;netstandard-1.2" />
<TypeSignature Language="VB.NET" Value="Public Structure Single
Implements IComparable, IComparable(Of Single), IEquatable(Of Single), IFormattable" FrameworkAlternate="netstandard-1.0;netstandard-1.1;netstandard-1.2" />
<TypeSignature Language="F#" Value="type single = struct
 interface IFormattable" FrameworkAlternate="netstandard-1.0;netstandard-1.1;netstandard-1.2" />
<TypeSignature Language="C++ CLI" Value="public value class float : IComparable, IComparable<float>, IEquatable<float>, 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.Single></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.Single></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.Single></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.Single></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.Single,System.Single,System.Single></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.Single,System.Single></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.Single></InterfaceName>
</Interface>
<Interface FrameworkAlternate="net-7.0;net-8.0;net-9.0">
<InterfaceName>System.Numerics.IBinaryNumber<System.Single></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.Single,System.Single,System.Single></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.Single,System.Single,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.Single></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.Single,System.Single,System.Single></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.Single,System.Single,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.Single></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.Single></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.Single></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.Single></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.Single></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.Single></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.Single></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.Single></InterfaceName>
</Interface>
<Interface FrameworkAlternate="net-7.0;net-8.0;net-9.0">
<InterfaceName>System.Numerics.IModulusOperators<System.Single,System.Single,System.Single></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.Single,System.Single></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.Single,System.Single,System.Single></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.Single></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.Single></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.Single></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.Single></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.Single></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.Single,System.Single,System.Single></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.Single></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.Single,System.Single></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.Single,System.Single></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.Single></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 single-precision floating-point number.</summary>
<remarks>For more information about this API, see <see href="/dotnet/fundamentals/runtime-libraries/system-single">Supplemental API remarks for Single</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.Double" />
</Docs>
<Members>
<Member MemberName="Abs">
<MemberSignature Language="C#" Value="public static float Abs (float value);" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig float32 Abs(float32 value) cil managed" />
<MemberSignature Language="DocId" Value="M:System.Single.Abs(System.Single)" />
<MemberSignature Language="VB.NET" Value="Public Shared Function Abs (value As Single) As Single" />
<MemberSignature Language="F#" Value="static member Abs : single -> single" Usage="System.single.Abs value" />
<MemberSignature Language="C++ CLI" Value="public:
 static float Abs(float value) = System::Numerics::INumberBase<float>::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.Single</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="value" Type="System.Single" 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 float Acos (float x);" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig float32 Acos(float32 x) cil managed" />
<MemberSignature Language="DocId" Value="M:System.Single.Acos(System.Single)" />
<MemberSignature Language="VB.NET" Value="Public Shared Function Acos (x As Single) As Single" />
<MemberSignature Language="F#" Value="static member Acos : single -> single" Usage="System.single.Acos x" />
<MemberSignature Language="C++ CLI" Value="public:
 static float Acos(float x) = System::Numerics::ITrigonometricFunctions<float>::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.Single</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="x" Type="System.Single" 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 float Acosh (float x);" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig float32 Acosh(float32 x) cil managed" />
<MemberSignature Language="DocId" Value="M:System.Single.Acosh(System.Single)" />
<MemberSignature Language="VB.NET" Value="Public Shared Function Acosh (x As Single) As Single" />
<MemberSignature Language="F#" Value="static member Acosh : single -> single" Usage="System.single.Acosh x" />
<MemberSignature Language="C++ CLI" Value="public:
 static float Acosh(float x) = System::Numerics::IHyperbolicFunctions<float>::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.Single</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="x" Type="System.Single" 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 float AcosPi (float x);" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig float32 AcosPi(float32 x) cil managed" />
<MemberSignature Language="DocId" Value="M:System.Single.AcosPi(System.Single)" />
<MemberSignature Language="VB.NET" Value="Public Shared Function AcosPi (x As Single) As Single" />
<MemberSignature Language="F#" Value="static member AcosPi : single -> single" Usage="System.single.AcosPi x" />
<MemberSignature Language="C++ CLI" Value="public:
 static float AcosPi(float x) = System::Numerics::ITrigonometricFunctions<float>::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.Single</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="x" Type="System.Single" 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 float Asin (float x);" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig float32 Asin(float32 x) cil managed" />
<MemberSignature Language="DocId" Value="M:System.Single.Asin(System.Single)" />
<MemberSignature Language="VB.NET" Value="Public Shared Function Asin (x As Single) As Single" />
<MemberSignature Language="F#" Value="static member Asin : single -> single" Usage="System.single.Asin x" />
<MemberSignature Language="C++ CLI" Value="public:
 static float Asin(float x) = System::Numerics::ITrigonometricFunctions<float>::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.Single</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="x" Type="System.Single" 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 float Asinh (float x);" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig float32 Asinh(float32 x) cil managed" />
<MemberSignature Language="DocId" Value="M:System.Single.Asinh(System.Single)" />
<MemberSignature Language="VB.NET" Value="Public Shared Function Asinh (x As Single) As Single" />
<MemberSignature Language="F#" Value="static member Asinh : single -> single" Usage="System.single.Asinh x" />
<MemberSignature Language="C++ CLI" Value="public:
 static float Asinh(float x) = System::Numerics::IHyperbolicFunctions<float>::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.Single</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="x" Type="System.Single" 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 float AsinPi (float x);" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig float32 AsinPi(float32 x) cil managed" />
<MemberSignature Language="DocId" Value="M:System.Single.AsinPi(System.Single)" />
<MemberSignature Language="VB.NET" Value="Public Shared Function AsinPi (x As Single) As Single" />
<MemberSignature Language="F#" Value="static member AsinPi : single -> single" Usage="System.single.AsinPi x" />
<MemberSignature Language="C++ CLI" Value="public:
 static float AsinPi(float x) = System::Numerics::ITrigonometricFunctions<float>::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.Single</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="x" Type="System.Single" 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 float Atan (float x);" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig float32 Atan(float32 x) cil managed" />
<MemberSignature Language="DocId" Value="M:System.Single.Atan(System.Single)" />
<MemberSignature Language="VB.NET" Value="Public Shared Function Atan (x As Single) As Single" />
<MemberSignature Language="F#" Value="static member Atan : single -> single" Usage="System.single.Atan x" />
<MemberSignature Language="C++ CLI" Value="public:
 static float Atan(float x) = System::Numerics::ITrigonometricFunctions<float>::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.Single</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="x" Type="System.Single" 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 float Atan2 (float y, float x);" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig float32 Atan2(float32 y, float32 x) cil managed" />
<MemberSignature Language="DocId" Value="M:System.Single.Atan2(System.Single,System.Single)" />
<MemberSignature Language="VB.NET" Value="Public Shared Function Atan2 (y As Single, x As Single) As Single" />
<MemberSignature Language="F#" Value="static member Atan2 : single * single -> single" Usage="System.single.Atan2 (y, x)" />
<MemberSignature Language="C++ CLI" Value="public:
 static float Atan2(float y, float x) = System::Numerics::IFloatingPointIeee754<float>::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.Single</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="y" Type="System.Single" Index="0" FrameworkAlternate="net-7.0;net-8.0;net-9.0" />
<Parameter Name="x" Type="System.Single" 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 float Atan2Pi (float y, float x);" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig float32 Atan2Pi(float32 y, float32 x) cil managed" />
<MemberSignature Language="DocId" Value="M:System.Single.Atan2Pi(System.Single,System.Single)" />
<MemberSignature Language="VB.NET" Value="Public Shared Function Atan2Pi (y As Single, x As Single) As Single" />
<MemberSignature Language="F#" Value="static member Atan2Pi : single * single -> single" Usage="System.single.Atan2Pi (y, x)" />
<MemberSignature Language="C++ CLI" Value="public:
 static float Atan2Pi(float y, float x) = System::Numerics::IFloatingPointIeee754<float>::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.Single</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="y" Type="System.Single" Index="0" FrameworkAlternate="net-7.0;net-8.0;net-9.0" />
<Parameter Name="x" Type="System.Single" 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 float Atanh (float x);" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig float32 Atanh(float32 x) cil managed" />
<MemberSignature Language="DocId" Value="M:System.Single.Atanh(System.Single)" />
<MemberSignature Language="VB.NET" Value="Public Shared Function Atanh (x As Single) As Single" />
<MemberSignature Language="F#" Value="static member Atanh : single -> single" Usage="System.single.Atanh x" />
<MemberSignature Language="C++ CLI" Value="public:
 static float Atanh(float x) = System::Numerics::IHyperbolicFunctions<float>::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.Single</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="x" Type="System.Single" 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 float AtanPi (float x);" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig float32 AtanPi(float32 x) cil managed" />
<MemberSignature Language="DocId" Value="M:System.Single.AtanPi(System.Single)" />
<MemberSignature Language="VB.NET" Value="Public Shared Function AtanPi (x As Single) As Single" />
<MemberSignature Language="F#" Value="static member AtanPi : single -> single" Usage="System.single.AtanPi x" />
<MemberSignature Language="C++ CLI" Value="public:
 static float AtanPi(float x) = System::Numerics::ITrigonometricFunctions<float>::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.Single</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="x" Type="System.Single" 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 float BitDecrement (float x);" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig float32 BitDecrement(float32 x) cil managed" />
<MemberSignature Language="DocId" Value="M:System.Single.BitDecrement(System.Single)" />
<MemberSignature Language="VB.NET" Value="Public Shared Function BitDecrement (x As Single) As Single" />
<MemberSignature Language="F#" Value="static member BitDecrement : single -> single" Usage="System.single.BitDecrement x" />
<MemberSignature Language="C++ CLI" Value="public:
 static float BitDecrement(float x) = System::Numerics::IFloatingPointIeee754<float>::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.Single</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="x" Type="System.Single" 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 float BitIncrement (float x);" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig float32 BitIncrement(float32 x) cil managed" />
<MemberSignature Language="DocId" Value="M:System.Single.BitIncrement(System.Single)" />
<MemberSignature Language="VB.NET" Value="Public Shared Function BitIncrement (x As Single) As Single" />
<MemberSignature Language="F#" Value="static member BitIncrement : single -> single" Usage="System.single.BitIncrement x" />
<MemberSignature Language="C++ CLI" Value="public:
 static float BitIncrement(float x) = System::Numerics::IFloatingPointIeee754<float>::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.Single</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="x" Type="System.Single" 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 float Cbrt (float x);" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig float32 Cbrt(float32 x) cil managed" />
<MemberSignature Language="DocId" Value="M:System.Single.Cbrt(System.Single)" />
<MemberSignature Language="VB.NET" Value="Public Shared Function Cbrt (x As Single) As Single" />
<MemberSignature Language="F#" Value="static member Cbrt : single -> single" Usage="System.single.Cbrt x" />
<MemberSignature Language="C++ CLI" Value="public:
 static float Cbrt(float x) = System::Numerics::IRootFunctions<float>::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.Single</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="x" Type="System.Single" 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 float Ceiling (float x);" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig float32 Ceiling(float32 x) cil managed" />
<MemberSignature Language="DocId" Value="M:System.Single.Ceiling(System.Single)" />
<MemberSignature Language="VB.NET" Value="Public Shared Function Ceiling (x As Single) As Single" />
<MemberSignature Language="F#" Value="static member Ceiling : single -> single" Usage="System.single.Ceiling x" />
<MemberSignature Language="C++ CLI" Value="public:
 static float Ceiling(float x) = System::Numerics::IFloatingPoint<float>::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.Single</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="x" Type="System.Single" 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 float Clamp (float value, float min, float max);" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig float32 Clamp(float32 value, float32 min, float32 max) cil managed" />
<MemberSignature Language="DocId" Value="M:System.Single.Clamp(System.Single,System.Single,System.Single)" />
<MemberSignature Language="VB.NET" Value="Public Shared Function Clamp (value As Single, min As Single, max As Single) As Single" />
<MemberSignature Language="F#" Value="static member Clamp : single * single * single -> single" Usage="System.single.Clamp (value, min, max)" />
<MemberSignature Language="C++ CLI" Value="public:
 static float Clamp(float value, float min, float max) = System::Numerics::INumber<float>::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>
<ReturnType>System.Single</ReturnType>
</ReturnValue>