diff options
author | Benoit Giannangeli <benoit.giannangeli@boursorama.fr> | 2017-02-15 08:12:58 +0100 |
---|---|---|
committer | Benoit Giannangeli <benoit.giannangeli@boursorama.fr> | 2017-02-15 08:16:12 +0100 |
commit | 533523c45540ab5ffe233bed58824ca8f30890ce (patch) | |
tree | 8eea589941ee222ea438aba0b7cdd13669a7749e /README.md | |
parent | 7e5ee49b3844eaa1623152878823eea2f54bb248 (diff) | |
download | fengari-533523c45540ab5ffe233bed58824ca8f30890ce.tar.gz fengari-533523c45540ab5ffe233bed58824ca8f30890ce.tar.bz2 fengari-533523c45540ab5ffe233bed58824ca8f30890ce.zip |
__len
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 12 |
1 files changed, 6 insertions, 6 deletions
@@ -8,20 +8,17 @@ - [ ] Basic types representation: - [x] nil - [x] boolean + - [x] table + - [x] function + - [ ] string (8-bit clean) - [ ] number (32-bit ?) - [ ] integer - [ ] float - - [ ] string (8-bit clean) - - [ ] table - - [ ] function - [ ] userdata - [ ] thread - [ ] Tag Methods - [x] `__index` - [x] `__newindex` - - [x] `__gc` (unavailable) - - [x] `__mode` (unavailable) - - [ ] `__len` - [x] `__add` - [x] `__sub` - [x] `__mul` @@ -39,6 +36,9 @@ - [x] `__eq` - [x] `__lt` - [x] `__le` + - [x] `__gc` (unavailable) + - [x] `__mode` (unavailable) + - [x] `__len` - [ ] `__concat` - [ ] `__call` - [ ] `__tostring` |