diff options
author | 最萌小汐 <sumneko@hotmail.com> | 2019-04-05 18:57:03 +0800 |
---|---|---|
committer | 最萌小汐 <sumneko@hotmail.com> | 2019-04-05 18:57:03 +0800 |
commit | 8cd1514556324eabcf1b96954afe53adfc2030b7 (patch) | |
tree | c9a8aa5f1f9913ea9bcde9f60de526732b679516 /server/locale/en-US/libs/lua/math.lni | |
parent | 4f94d3500d6d7b6d082647359011d2ca103741db (diff) | |
download | lua-language-server-8cd1514556324eabcf1b96954afe53adfc2030b7.zip |
Lua 5.2 的API
Diffstat (limited to 'server/locale/en-US/libs/lua/math.lni')
-rw-r--r-- | server/locale/en-US/libs/lua/math.lni | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/server/locale/en-US/libs/lua/math.lni b/server/locale/en-US/libs/lua/math.lni index c731511b..0a89176e 100644 --- a/server/locale/en-US/libs/lua/math.lni +++ b/server/locale/en-US/libs/lua/math.lni @@ -37,12 +37,18 @@ description = 'Returns the largest integral value smaller than or equal to `x`.' [fmod] description = 'Returns the remainder of the division of `x` by `y` that rounds the quotient towards zero.' +[frexp] +description = 'Decompose `x` into tails and exponents. Returns `m` and `e` such that `x = m * (2 ^ e)`, `e` is an integer and the absolute value of `m` is in the range [0.5, 1) (or zero when `x` is zero).' + [huge] description = 'A value larger than any other numeric value.' [log] description = 'Returns the logarithm of `x` in the given base.' +[ldexp] +description = 'Returns `m * (2 ^ e)` .' + [max] description = 'Returns the argument with the maximum value, according to the Lua operator `<`.' |