Type Function Library table.* Return value Number Revision Release 2025.3714 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.
table.maxn( t )
Array. The array to traverse.
local t = { 1,1,2,3,5,8,13 } print( table.maxn(t) ) --> 7