table.Empty
From GMod Wiki
Revision as of 05:52, 21 September 2009 by Unrealomega (Talk | contribs)
| Function | |
| Syntax |
table.Empty( Table table ) Where is this used? |
| Description: | |
| Empties a table. | |
| Returns: | nil |
| Part of Library: | Table |
| Realm: |
|
| BBCode Link: | [b][url=http://wiki.garrysmod.com/?title=Table.Empty]Table.Empty [img]http://wiki.garrysmod.com/favicon.ico[/img][/url][/b] |
Example
| Description | Empty a table. |
|---|---|
| Used on | |
| Code | local test_table = {1, "1", Vector(5,2,1)} table.Empty(test_table) PrintTable(test_table) |
| Output | N/A |