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
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
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
}