Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- __index = tbl[key]
- __newindex = tbl[key] = value
- __call = tbl(...)
- __tostring = tostring(tbl)
- __unm = -tbl
- __add = tbl + value
- __sub = tbl - value
- __mul = tbl * value
- __div = tbl / value
- __pow = tbl ^ value
- __eq = tbl == value
- __lt = tbl > value | tbl < value
- __le = tbl >= value | tbl <= value
- __len = tbl % value
- __len = #tbl
- __concat = tbl .. value
Advertisement
Add Comment
Please, Sign In to add comment