Table System
Server & Client Supported
ภาพรวม
ที่อยู่ไฟล์
ฟังก์ชัน
Dump
-- ตัวอย่างการใช้งาน
local data = {name = "John", age = 25}
print(AFUCore.Table.Dump(data))
-- {"name": "John", "age": 25}SizeOf
-- ตัวอย่างการใช้งาน
local t = {1, nil, 3, nil, 5}
print(AFUCore.Table.SizeOf(t)) -- 3