mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
math: add some benchmark tests (#12142)
This commit is contained in:

committed by
GitHub

parent
3e02cfd528
commit
35b301f73c
@ -1,31 +1,15 @@
|
||||
module math
|
||||
|
||||
fn C.cos(x f64) f64
|
||||
|
||||
fn C.cosf(x f32) f32
|
||||
|
||||
fn C.sin(x f64) f64
|
||||
|
||||
fn C.sinf(x f32) f32
|
||||
|
||||
// cos calculates cosine.
|
||||
[inline]
|
||||
pub fn cos(a f64) f64 {
|
||||
return C.cos(a)
|
||||
}
|
||||
|
||||
// cosf calculates cosine. (float32)
|
||||
[inline]
|
||||
pub fn cosf(a f32) f32 {
|
||||
return C.cosf(a)
|
||||
}
|
||||
|
||||
// sin calculates sine.
|
||||
[inline]
|
||||
pub fn sin(a f64) f64 {
|
||||
return C.sin(a)
|
||||
}
|
||||
|
||||
// sinf calculates sine. (float32)
|
||||
[inline]
|
||||
pub fn sinf(a f32) f32 {
|
||||
|
Reference in New Issue
Block a user