WoW:API pairs

From AddOn Studio
Revision as of 02:35, 3 November 2008 by WoWWiki>OranL (Changed layout slightly, corrected spelling)
Jump to navigation Jump to search

Native Lua statement:

Used in loop constructs to iterate through the values of a table, with index being anything.

Example:

local random_array = { mug = "coffee", [42] = "universe", true = "false" }

for index,value in pairs(random_array) do 
  if (type(index) == "number") then
     index = tostring(index)
  elseif (type(index) == "boolean") then
    if (index) then
      index = "true"
    else
      index = "false"
    end
  end
  DEFAULT_CHAT_FRAME:AddMessage(index.." : "..value)
end

Result:

 mug : coffee
 42 : universe
 true : false

would be output to the chat window.

Template:LUA