diff options
author | Mark Pulford <mark@kyne.com.au> | 2011-08-18 18:48:41 +0930 |
---|---|---|
committer | Mark Pulford <mark@kyne.com.au> | 2011-08-18 18:48:41 +0930 |
commit | 14300217869a04453ab1f8832257c1d511264995 (patch) | |
tree | 370520ba679b8fd2dc341c2f37c30933316cd9ac | |
parent | 639f183093f6dbded60865a8d10b77a59743a587 (diff) | |
download | lua-cjson-14300217869a04453ab1f8832257c1d511264995.tar.gz lua-cjson-14300217869a04453ab1f8832257c1d511264995.tar.bz2 lua-cjson-14300217869a04453ab1f8832257c1d511264995.zip |
Update TODO
-rw-r--r-- | TODO | 8 |
1 files changed, 1 insertions, 7 deletions
@@ -1,10 +1,4 @@ | |||
1 | - Make encode/decode routines OS thread safe (within the same lua_State) | 1 | - Make encode/decode routines OS thread safe (within the same lua_State) |
2 | - Optionally create an object for settings. Clone function. | 2 | - Optionally create an object for settings. Clone function. |
3 | 3 | ||
4 | - Explain limitations of using JSON as a serialisation format under Lua: | 4 | - Convert documentation into structured source format |
5 | - Tables keys: | ||
6 | - Must only be integer or string | ||
7 | - Integer keys will be deserialised as a string | ||
8 | - Metamethods are not used when encoding tables: | ||
9 | - next() is used to iterate over hashes. | ||
10 | - rawget() is used when iterating over arrays. | ||