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:
18
vlib/math/bits.js.v
Normal file
18
vlib/math/bits.js.v
Normal 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
|
||||
}
|
Reference in New Issue
Block a user