diff options
author | Thijs Schreijer <thijs@thijsschreijer.nl> | 2022-08-24 12:31:18 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-24 12:31:18 +0200 |
commit | 87c48f3e4ddba13d9c014067e62568ba906cc410 (patch) | |
tree | c99889ec0b9bbab2bc5ee14cd9046d0a122eb226 /WISH | |
parent | 95b7efa9da506ef968c1347edf3fc56370f0deed (diff) | |
parent | 97d5194f302d3fb9fe27874d9b5f73004a208d01 (diff) | |
download | luasocket-87c48f3e4ddba13d9c014067e62568ba906cc410.tar.gz luasocket-87c48f3e4ddba13d9c014067e62568ba906cc410.tar.bz2 luasocket-87c48f3e4ddba13d9c014067e62568ba906cc410.zip |
Merge pull request #364 from lunarmodules/cleanup
Diffstat (limited to 'WISH')
-rw-r--r-- | WISH | 22 |
1 files changed, 0 insertions, 22 deletions
@@ -1,22 +0,0 @@ | |||
1 | ... as an l-value to get all results of a function call? | ||
2 | at least ...[i] and #... | ||
3 | extend to full tuples? | ||
4 | |||
5 | __and __or __not metamethods | ||
6 | |||
7 | lua_tostring, lua_tonumber, lua_touseradta etc push values in stack | ||
8 | __tostring,__tonumber, __touserdata metamethods are checked | ||
9 | and expected to push an object of correct type on stack | ||
10 | |||
11 | lua_rawtostring, lua_rawtonumber, lua_rawtouserdata don't | ||
12 | push anything on stack, return data of appropriate type, | ||
13 | skip metamethods and throw error if object not of exact type | ||
14 | |||
15 | package.findfile exported | ||
16 | module not polluting the global namespace | ||
17 | |||
18 | coxpcall with a coroutine pool for efficiency (reusing coroutines) | ||
19 | |||
20 | exception mechanism formalized? just like the package system was. | ||
21 | |||
22 | a nice bitlib in the core | ||