Skip to content

Release 0.031

Choose a tag to compare

@Newexotik Newexotik released this 18 Oct 09:39
· 6 commits to main since this release
8f7502f
  • 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