getin

function getin( tab, ... ) --> val

Description

Returns the value val in a nested table tab, where are a sequence of keys. Returns nil if the key sequence not exist in the table.

Parameters

tab

The table with the value.

A sequence of keys.

Return Values

val

The value inside the table.

Code

--ZFUNC-getin-v1
local function getin( tab, ... ) --> val
   local path = { ... }

   local val = tab
   for i, v in ipairs( path ) do
      val = val[ v ]
      if not val then
         return nil
      end
   end

   return val
end

return getin

Examples

local t = require( "taptest" )
local getin = require( "getin" )

local obj = {
   name = { first_name = "Dave",
            last_name = "Yarwood" },
   age = 28,
   hobbies = { "music", "languages", "programming" }
}

t( getin( obj, "name", "last_name" ), "Yarwood" )
t( getin( obj, "hobbies", 3 ), "programming" )
t( getin( obj, "birthday" ), nil )

t()

Inspired by