CapsAdmin

Untitled

Jun 28th, 2011
200
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.45 KB | None | 0 0
  1. __index                     = tbl[key]
  2. __newindex                  = tbl[key] = value
  3. __call                      = tbl(...)
  4. __tostring                  = tostring(tbl)
  5.  
  6. __unm                       = -tbl
  7. __add                       = tbl + value
  8. __sub                       = tbl - value
  9. __mul                       = tbl * value
  10. __div                       = tbl / value
  11. __pow                       = tbl ^ value
  12. __eq                        = tbl == value
  13. __lt                        = tbl > value   | tbl < value
  14. __le                        = tbl >= value  | tbl <= value
  15.  
  16. __len                       = tbl % value
  17. __len                       = #tbl
  18. __concat                    = tbl .. value
Advertisement
Add Comment
Please, Sign In to add comment