The metatables do not support custom __pairs and __ipairs overrides
#51
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
According to http://lua-users.org/wiki/GeneralizedPairsAndIpairs Lua versions including and above 5.2 should support overriding the
__pairsand__ipairsfunctions of a table by specifying them in the metatable. Currently specifying them does not change anything.Fixed as part of https://github.com/luaj/luaj/pull/48
Fixed