Files
wow_Meta/api/gmatch.lua
2025-05-04 15:15:00 +02:00

9 lines
300 B
Lua

---@diagnostic disable: missing-return, lowercase-global
---@meta
---@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