Tables
srb_lib comes with some tables useful functions.
Print Table 
--- Recursively print key/values of a table
---@param tbl table
---@param indent number
---@param done table
function SRB:PrintTable(tbl, indent, done)Table Inherit 
--- Copies any missing data from base to tbl
---@param tbl table
---@param base table
---@return table
function SRB:table_Inherit(tbl, base)Table Is Empty 
--- Returns whether a table has iterable items in it, useful for non-sequential tables
---@param tbl table
---@return bool
function SRB:table_isEmpty(tbl)Table Has Value 
Table Sort Desc 
Table Sort by Key 
Table Random 
Table Shuffle 
Table Key from Value 
Table Add 
Table Remove by Value 
Table get Keys 
Table clear Keys 
Table Collapse Key Value 
Table Copy 
Table Copy From 
Table Count 
Table Empty 
Table Merge 
Table Sorted Pairs 
Last updated