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

7 lines
293 B
Lua

---@diagnostic disable: missing-return, lowercase-global
---@param s string
---@param pattern string
---@return function iterator
---Returns an iterator function for finding pattern matches in a string. Alias for the standard library function string.gmatch.
function gmatch(s, pattern) end