Index
Tables

RemoveTableElement

RemoveTableElement(<-table <-key)

Description

Removes an element from a table. Note that keys are case sensitive strings.

Examples

 CreateTable ->table
 SetTableElement(<-table "SomeKey" 42)
 RemoveTableElement(<-table "SomeKey")
 trace(GetTableElement(<-table "SomeKey"))  #prints ""

Index