diff options
Diffstat (limited to 'meta/3rd/Defold/library/built-ins.lua')
m--------- | meta/3rd/Defold | 0 | ||||
-rw-r--r-- | meta/3rd/Defold/library/built-ins.lua | 24 |
2 files changed, 0 insertions, 24 deletions
diff --git a/meta/3rd/Defold b/meta/3rd/Defold new file mode 160000 +Subproject 05379b40fb3084d82f7270475e42da8d521c4da diff --git a/meta/3rd/Defold/library/built-ins.lua b/meta/3rd/Defold/library/built-ins.lua deleted file mode 100644 index 9365baf0..00000000 --- a/meta/3rd/Defold/library/built-ins.lua +++ /dev/null @@ -1,24 +0,0 @@ ----Built-ins API documentation ----Built-in scripting functions. - ----All ids in the engine are represented as hashes, so a string needs to be hashed ----before it can be compared with an id. ----@param s string # string to hash ----@return hash # a hashed string -function hash(s) end - ----Returns a hexadecimal representation of a hash value. ----The returned string is always padded with leading zeros. ----@param h hash # hash value to get hex string for ----@return string # hex representation of the hash -function hash_to_hex(h) end - ----Pretty printing of Lua values. This function prints Lua values ----in a manner similar to +print()+, but will also recurse into tables ----and pretty print them. There is a limit to how deep the function ----will recurse. ----@param v any # value to print -function pprint(v) end - - - |