1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

vlib/math: Add a pure V backend for vlib/math (#11267)

This commit is contained in:
Ulises Jeremias Cornejo Fandos
2021-08-22 18:35:28 -03:00
committed by GitHub
parent dd486bb0fb
commit 1cfc4198f5
67 changed files with 3805 additions and 1798 deletions

34
vlib/math/floor.js.v Normal file
View File

@@ -0,0 +1,34 @@
module math
fn JS.Math.ceil(x f64) f64
fn JS.Math.floor(x f64) f64
fn JS.Math.round(x f64) f64
fn JS.Math.trunc(x f64) f64
// ceil returns the nearest f64 greater or equal to the provided value.
[inline]
pub fn ceil(x f64) f64 {
return JS.Math.ceil(x)
}
// floor returns the nearest f64 lower or equal of the provided value.
[inline]
pub fn floor(x f64) f64 {
return JS.Math.floor(x)
}
// round returns the integer nearest to the provided value.
[inline]
pub fn round(x f64) f64 {
return JS.Math.round(x)
}
// trunc rounds a toward zero, returning the nearest integral value that is not
// larger in magnitude than a.
[inline]
pub fn trunc(x f64) f64 {
return JS.Math.trunc(x)
}