Release 0.031
- Default methods that are added by the module will now be ignored when getting length of a dynamictable or using a for i, v loop
local t = DynamicTables("Test")
t.A = true
t.B = false
print(#t) -- Prints 2
for i, v in t do
print(i, v)
--[[
Prints:
A true
B false
]]
end