Files
wow_Meta/api/tostringall.lua
2024-12-16 13:13:08 +01:00

6 lines
306 B
Lua
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

---@diagnostic disable: missing-return, lowercase-global
---@param ... list
---@return list ...
---Alternative to tostring() for bulk conversion of values. Using tostringall() instead of tostring() when converting a large number of values may result in better performance.
function tostringall(...) end