--- 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)
--- Returns whether the value is in given table
---@param tbl table
---@return bool
function SRB:table_hasValue(tbl, val)
--- Returns a table sorted numerically by Key value
---@param tbl table
---@param desc bool
---@return table
function SRB:table_sortByKey(tbl, desc)
--- Return a random key, value
---@param tbl table
---@return dynamic, dynamic
function SRB:table_random(tbl)
--- Performs an inline Fisher-Yates shuffle on the table in O(n) time
---@param tbl table
function SRB:table_shuffle(tbl)
--- Return a key from a table by a value
---@param tbl table
---@param val dynamic
---@return dynamic
function SRB:table_keyFromValue(tbl, val)
---
---@param dest table
---@param source table
---@return table
function SRB:table_add(dest, source)
--- Remove a key from a table by its value and return the removed key
---@param tbl table
---@param val dynamic
---@return dynamic
function SRB:table_removeByValue(tbl, val)
--- Return a table of keys of a table
---@param tbl table
---@return table
function SRB:table_getKeys(tbl)
---
---@param from table
---@param to table
function SRB:table_copyFromTo(from, to)
--- Count values from a table
---@param tbl table
---@return number
function SRB:table_count(tbl)
--- Empty a table
---@param tab table
function SRB:table_empty(tbl)
--- Merge a source table into a dest table and return the dest table
---@param dest table
---@param source table
---@param forceOverride bool
---@return table
function SRB:table_merge(dest, source, forceOverride)
---
---@param tbl table
---@param sortDesc bool
---@return function
function SRB:sortedPairs(tbl, sortDesc)