diff options
author | Caleb Maclennan <caleb@alerque.com> | 2023-11-10 09:12:04 +0300 |
---|---|---|
committer | Caleb Maclennan <caleb@alerque.com> | 2023-11-10 09:12:04 +0300 |
commit | 5c4fc93d5f4137bf4c22ddf1a048c907a4a26727 (patch) | |
tree | a9a68e1f6a9c3bfe2b64fa1c3a4098865b7d3b5d /WISH | |
parent | ccef3bc4e2aa6ee5b997a80aabb58f4ff0b0e98f (diff) | |
parent | 43a97b7f0053313b43906371dbdc226271e6c8ab (diff) | |
download | luasocket-hjelmeland-patch-1.tar.gz luasocket-hjelmeland-patch-1.tar.bz2 luasocket-hjelmeland-patch-1.zip |
Merge branch 'master' into hjelmeland-patch-1hjelmeland-patch-1
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 | ||