×

Tags

探索与 "lua" 相关的所有文章

lua

共有 2 篇文章
Lua 的 Coroutine 模块

#Lua 的 Coroutine 模块请查看 Lua 标准库模块列表 了解更多相关 API。 函数 说明 coroutine.create 创建协程对象 coroutine.close 关闭协程对象 coroutine.resume 恢复协程 coroutine.yield 让出协程 coroutine.wrap 创建协程对象,返回一个恢复函数 coroutine.isyieldable 检查协程能否让出 coroutine.running 获取正在运行的协程对象 coroutine.status 获取协程状态 Lua 支持协同程序(也称为协作多...

Lua 的 Math 模块

#Lua 的 Math 模块请查看 Lua 标准库模块列表 了解更多相关 API。 常量 说明 math.huge 数值的最大值,通常对应 C 语言中的 HUGE_VAL math....