Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Is there a functionality in Lua similar to collections.defaultdict available in Python, which automatically handles default values for non-existent associative array keys?

I want the code below to set nil to v instead of an error. So basically a way to a[2] (non-existent key) be a table by default:

a = {}
v = a[2][3] 

>>> PANIC: unprotected error in call to Lua API (main.lua:603: attempt to index field '?' (a nil value))

In Python it can be done like this:

>>> import collections
>>> a = collections.defaultdict(dict)
>>> print a[2]
{}
share|improve this question

1 Answer

up vote 4 down vote accepted

Is there a Lua standard function to do it? No. But you can do it easily enough with metatables. You can even write a function to create such tables:

function CreateTableWithDefaultElement(default)
  local tbl = {}
  local mtbl = {}
  mtbl.__index = function(tbl, key)
    local val = rawget(tbl, key)
    return val or default
  end
  setmetatable(tbl, mtbl)
  return tbl
end

Note that each element will get the same default value. So if you make the default value a table, each "empty" element in the returned table will effectively reference the same table. If that's not what you want, you'll have to modify the function.

share|improve this answer
Perfect! Thanks :) – Secator Apr 29 '12 at 10:59

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.