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

math: inf,nan,fmod for the JS backend (#11246)

This commit is contained in:
playX
2021-08-20 01:14:49 +03:00
committed by GitHub
parent 70a658a265
commit 1570e613b5
10 changed files with 812 additions and 34 deletions

18
vlib/math/bits.js.v Normal file
View File

@ -0,0 +1,18 @@
module math
pub fn inf(sign int) f64 {
mut res := 0.0
if sign >= 0 {
#res.val = Infinity
} else {
#res.val = -Infinity
}
return res
}
pub fn nan() f64 {
mut res := 0.0
#res.val = NaN
return res
}