Table
14 functions
- Table_ConcatenateCreates a third table that points to every enumerable element in table1 and table2, in that order
- Table_Concatenate_AssociativeCreates a third associated table that contains all key-value pair of all tables passed as parameter.
- Table_ContainsChecks if a table contains the specified item
- Table_CopyCopies the contents of the original table returns a new table with the contents of that table
- Table_DeterministicOrderedPairsIterate over a table's entries in the order of their keys sorted alphabetically
- Table_FillWithDefaultValuesUpdates myTable by applying default values from the myDefaults table for any items that are not explicitly declared already
- Table_FillWithDefaultValues_MergeSubTable
- Table_GetRandomItemReturns a random item from a table. You can return multiple items (without duplicates) by passing in an optional number parameter.
- Table_MakeReadOnlyMakes a table read-only. This can be done recursively to also apply to any subtables.
- Table_RemoveFirstItemFinds the first instance of a given item in the given table and removes it
- Table_RemoveIf
- Table_ReverseReverse the order of items in a table.
- Table_ShuffleRandomizes the order of items in a table.
- Table_StringSplitSplits the string based on the delimiter passed in