WoW:API pairs: Difference between revisions

From AddOn Studio
Jump to navigation Jump to search
(Change category from "LUA Functions" to "Lua functions".)
(fixed bug in in the example ("local random_array"..."pairs(fruits)"))
Line 7: Line 7:
  local random_array = { mug = "coffee", [42] = "universe", true = "false" }
  local random_array = { mug = "coffee", [42] = "universe", true = "false" }


  for index,value in pairs(fruits) do  
  for index,value in pairs(random_array) do  
   if (type(index) == "number") then
   if (type(index) == "number") then
       index = tostring(index)
       index = tostring(index)

Revision as of 12:58, 27 September 2007

Native Lua statement:

Used in loop constructs to iterate through the values of a table, with index beeing 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