Last active
August 30, 2018 05:10
-
-
Save josefnpat/45c60b0b60ed31019ce52c1af28e6c3d to your computer and use it in GitHub Desktop.
Compare Indexed Tables
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function compareIndexed(t1,t2) | |
local t1_count = 0 | |
for _,_ in pairs(t1) do t1_count = t1_count + 1 end | |
local t2_count = 0 | |
for _,_ in pairs(t2) do t2_count = t2_count + 1 end | |
if t1_count ~= t2_count then | |
return false | |
end | |
for i,v in pairs(t1) do | |
if type(v) == "table" then | |
if type(t2[i]) ~= "table" then | |
return false | |
end | |
local valid_left = compareIndexed(v,t2[i]) | |
if not valid_left then | |
return false | |
end | |
else -- numbers, strings, functions, etc | |
if t2[i] ~= v then | |
return false | |
end | |
end | |
end | |
return true | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment