math.parsefloat (value, decimal) | Integer float utility for lua. |
Pickle | Global class used by pickle/unpickle functions. |
pickle (t) | A table serialization utility for lua. |
unpickle (s) | Un-serialization tool (pretty sure thats not a word). |
string.encode (data) | Base64 encoding tool. |
string.decode (data) | Base64 decoding tool. |
string.explode (data, delim) | String to array utility. |
prettify | PRETTY PRINT FOR TABLES |
table.tostring (tbl, pretty) | Dump table contents to string |
table.copy (targetTable, deepCopy, mergeTable) | Copy all table data from a source to another table |
value | The integer amount to be adjusted. |
decimal | Number of decimal places allowed. |
clone |
t | A table to be serialized. |
s | A serialized table to be reversed. |
data | string data to be encoded. |
data | encoded string to be decoded. |
data | string to be converted to table data. |
delim | Character delimiter to separate the string by. |
tbl | A table to be stringified. |
pretty | Flag to syntactically format the result. |
targetTable | The recipient of the copied data. |
deepCopy | Flag the use of DEEP copying. |
mergeTable | The origin of the copied data. |