File tree Expand file tree Collapse file tree 1 file changed +27
-0
lines changed Expand file tree Collapse file tree 1 file changed +27
-0
lines changed Original file line number Diff line number Diff line change @@ -21,6 +21,15 @@ extern(C) fn sinf(f32) f32;
21
21
alias sin = sinf;
22
22
// ! @}
23
23
24
+ /* !
25
+ * Calculate the arc sine function of a number.
26
+ * @{
27
+ */
28
+ extern (C ) fn asin(f64) f64;
29
+ extern (C ) fn asinf(f32) f32;
30
+ alias asin = asinf;
31
+ // ! @}
32
+
24
33
/* !
25
34
* Calculate the cosine function of a number.
26
35
* @{
@@ -30,6 +39,15 @@ extern(C) fn cosf(f32) f32;
30
39
alias cos = cosf;
31
40
// ! @}
32
41
42
+ /* !
43
+ * Calculate the arc cosine function of a number.
44
+ * @{
45
+ */
46
+ extern (C ) fn acos(f64) f64;
47
+ extern (C ) fn acosf(f32) f32;
48
+ alias acos = acosf;
49
+ // ! @}
50
+
33
51
/* !
34
52
* Calculate the tangent function of a number.
35
53
* @{
@@ -39,6 +57,15 @@ extern(C) fn tanf(f32) f32;
39
57
alias tan = tanf;
40
58
// ! @}
41
59
60
+ /* !
61
+ * Calculate the arc tangent function of a number.
62
+ * @{
63
+ */
64
+ extern (C ) fn atan(f64) f64;
65
+ extern (C ) fn atanf(f32) f32;
66
+ alias atan = atanf;
67
+ // ! @}
68
+
42
69
/* !
43
70
* Calculate the square root of a number.
44
71
* @{
You can’t perform that action at this time.
0 commit comments