Skip to content
This repository was archived by the owner on Jan 23, 2023. It is now read-only.

Commit 2aee413

Browse files
committed
Adding the Acosh, Asinh, Atanh, and Cbrt functions to System.Math and System.MathF
1 parent 3c24c32 commit 2aee413

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

src/System.Runtime.Extensions/ref/System.Runtime.Extensions.cs

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -753,10 +753,14 @@ public static partial class Math
753753
public static sbyte Abs(sbyte value) { throw null; }
754754
public static float Abs(float value) { throw null; }
755755
public static double Acos(double d) { throw null; }
756+
public static double Acosh(double d) { throw null; }
756757
public static double Asin(double d) { throw null; }
758+
public static double Asinh(double d) { throw null; }
757759
public static double Atan(double d) { throw null; }
758760
public static double Atan2(double y, double x) { throw null; }
761+
public static double Atanh(double d) { throw null; }
759762
public static long BigMul(int a, int b) { throw null; }
763+
public static double Cbrt(double d) { throw null; }
760764
public static decimal Ceiling(decimal d) { throw null; }
761765
public static double Ceiling(double a) { throw null; }
762766
public static byte Clamp(byte value, byte min, byte max) { throw null; }
@@ -844,9 +848,13 @@ public static partial class MathF
844848
{
845849
public static float Abs(float x) { throw null; }
846850
public static float Acos(float x) { throw null; }
851+
public static float Acosh(float x) { throw null; }
847852
public static float Asin(float x) { throw null; }
853+
public static float Asinh(float x) { throw null; }
848854
public static float Atan(float x) { throw null; }
855+
public static float Atanh(float x) { throw null; }
849856
public static float Atan2(float y, float x) { throw null; }
857+
public static float Cbrt(float x) { throw null; }
850858
public static float Ceiling(float x) { throw null; }
851859
public static float Cos(float x) { throw null; }
852860
public static float Cosh(float x) { throw null; }

0 commit comments

Comments
 (0)