Files
wow_Meta/api/gmatch.lua
2025-05-04 14:35:26 +02:00

8 lines
291 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