9 lines
269 B
Lua
9 lines
269 B
Lua
---@diagnostic disable: missing-return, lowercase-global
|
|
---@meta
|
|
|
|
---@param index number
|
|
---@param # string
|
|
---@param ... list
|
|
---@return list ...
|
|
---Returns one or more values from a list (...), or the number of values in a list
|
|
function select(index, #, ...) end |