(L *LState)
| 30 | } |
| 31 | |
| 32 | func tableGetN(L *LState) int { |
| 33 | L.Push(LNumber(L.CheckTable(1).Len())) |
| 34 | return 1 |
| 35 | } |
| 36 | |
| 37 | func tableMaxN(L *LState) int { |
| 38 | L.Push(LNumber(L.CheckTable(1).MaxN())) |
nothing calls this directly
no test coverage detected
searching dependent graphs…