Arguments:
1) table: tab
2) string: key
3) any: value
Inserts a new entry into the table.
Arguments:
1) table: tab
2) string: key
Removes the entry with the given key from the table.
Arguments:
1) table: tab
2) string: key
3) any: value
Sets the value associated with the given key in the table to value.
Arguments:
1) table: tab
2) string: key
Return Type:
any
Gets the value associated with the given key in the table.
Arguments:
1) table: tab
Return Type:
array[string]
Returns an array containing all the keys in the table.
Arguments:
1) table: tab
Return Type:
array[any]
Returns an array containing all the values in the table.