Length of the value at index; it is equivalent to the # operator in Lua. The result is pushed on the stack. http://www.lua.org/manual/5.2/manual.html#lua_len
(index int)
| 1467 | // |
| 1468 | // http://www.lua.org/manual/5.2/manual.html#lua_len |
| 1469 | func (l *State) Length(index int) { l.apiPush(l.objectLength(l.indexToValue(index))) } |
| 1470 | |
| 1471 | // Pop pops n elements from the stack. |
| 1472 | // |
no test coverage detected