diff options
author | 最萌小汐 <sumneko@hotmail.com> | 2019-03-31 13:14:49 +0800 |
---|---|---|
committer | 最萌小汐 <sumneko@hotmail.com> | 2019-03-31 13:14:49 +0800 |
commit | 128584e0d91098f8a0d3c6bc48dc529e59d5d1e4 (patch) | |
tree | 99b7d329a33167e3b92605c2fdfd9072dee89a01 /server/locale/zh-CN/libs/lua/math.lni | |
parent | f8516effb5ca8e151f4c4eb45f8d97b273c9d922 (diff) | |
download | lua-language-server-128584e0d91098f8a0d3c6bc48dc529e59d5d1e4.zip |
修改目录名
Diffstat (limited to 'server/locale/zh-CN/libs/lua/math.lni')
-rw-r--r-- | server/locale/zh-CN/libs/lua/math.lni | 95 |
1 files changed, 95 insertions, 0 deletions
diff --git a/server/locale/zh-CN/libs/lua/math.lni b/server/locale/zh-CN/libs/lua/math.lni new file mode 100644 index 00000000..0bee3bb4 --- /dev/null +++ b/server/locale/zh-CN/libs/lua/math.lni @@ -0,0 +1,95 @@ +[abs] +description = '返回 `x` 的绝对值。' + +[acos] +description = '返回 `x` 的反余弦值(用弧度表示)。' + +[asin] +description = '返回 `x` 的反正弦值(用弧度表示)。' + +[atan] +description = '返回 `y/x` 的反正切值(用弧度表示)。' + +[ceil] +description = '返回不小于 `x` 的最小整数值。' + +[cos] +description = '返回 `x` 的余弦(假定参数是弧度)。' + +[deg] +description = '将角 `x` 从弧度转换为角度。' + +[exp] +description = '返回 `e^x` 的值 (e 为自然对数的底)。' + +[floor] +description = '返回不大于 `x` 的最大整数值。' + +[fmod] +description = '返回 `x` 除以 `y`,将商向零圆整后的余数。' + +[huge] +description = '一个比任何数字值都大的浮点数。' + +[log] +description = '返回以指定底的 `x` 的对数。' + +[max] +description = '返回参数中最大的值, 大小由 Lua 操作 `<` 决定。' + +[maxinteger] +description = '最大值的整数。' + +[min] +description = '返回参数中最小的值, 大小由 Lua 操作 `<` 决定。' + +[mininteger] +description = '最小值的整数。' + +[modf] +description = '返回 `x` 的整数部分和小数部分。' + +[pi] +description = '*π* 的值。' + +[rad] +description = '将角 `x` 从角度转换为弧度。' + +[random] +description = [[ +* `math.random()`: 返回 [0,1) 区间内一致分布的浮点伪随机数。 +* `math.random(n)`: 返回 [1, n] 区间内一致分布的整数伪随机数。 +* `math.random(m, n)`: 返回 [m, n] 区间内一致分布的整数伪随机数。 +]] + +[randomseed] +description = '把 `x` 设为伪随机数发生器的“种子”: 相同的种子产生相同的随机数列。' + +[sin] +description = '返回 `x` 的正弦值(假定参数是弧度)。' + +[sqrt] +description = '返回 `x` 的平方根。' + +[tan] +description = '返回 `x` 的正切值(假定参数是弧度)。' + +[tointeger] +description = '如果 `x` 可以转换为一个整数, 返回该整数。' + +[type] +[[.enums]] +name = 'type' +enum = 'integer' +description = '`x` 是一个整数。' +`````````` +name = 'type' +enum = 'float' +description = '`x` 是一个浮点数。' +`````````` +name = 'type' +code = 'nil' +description = '`x` 不是一个数字。' + +[ult] +description = '如果整数 `m` 和 `n` 以无符号整数形式比较, `m` 在 `n` 之下,返回布尔真否则返回假。' |