From 8cd1514556324eabcf1b96954afe53adfc2030b7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=9C=80=E8=90=8C=E5=B0=8F=E6=B1=90?= Date: Fri, 5 Apr 2019 18:57:03 +0800 Subject: =?UTF-8?q?Lua=205.2=20=E7=9A=84API?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- server/locale/en-US/libs/lua/math.lni | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'server/locale/en-US/libs/lua/math.lni') 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 `<`.' -- cgit v1.2.3