Type Function Library table.* Return value Number Revision Release 2024.3703 Keywords table, array
Returns the largest positive numerical index of the given table, or zero if the table has no positive numerical indices. To do its job, this function does a linear traversal of the whole table.
local t = { 1,1,2,3,5,8,13 } print( table.maxn(t) ) --> 7