Garry's Mod Wiki

table.Empty

  table.Empty( table tbl )

Description

Removes all values from a table. If your table is not a metatable, it is almost always better to use tab = {} to preserve performance.

Arguments

1 table tbl
The table to empty.

Example

Demonstrates the use of this function.

local Table = {"String Value", "Another value", Var = "Non-integer key"} table.Empty(Table) print( table.Count(Table) )
Output: 0