Advertisement
Ketho

WoW Function Aliases 02

Oct 15th, 2011
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.13 KB | None | 0 0
  1. -- http://forums.wowace.com/showthread.php?t=19736
  2.  
  3. -- math
  4. abs = math.abs
  5. ceil = math.ceil
  6. deg = math.deg
  7. exp = math.exp
  8. floor = math.floor
  9. frexp = math.frexp
  10. ldexp = math.ldexp
  11. log = math.log
  12. log10 = math.log10
  13. max = math.max
  14. min = math.min
  15. mod = math.fmod
  16. rad = math.rad
  17. random = math.random
  18. sqrt = math.sqrt
  19.  
  20. --math.acos
  21. --math.asin
  22. --math.atan
  23. --math.atan2
  24. --math.cos
  25. --math.sin
  26. --math.tan
  27.  
  28. --math.cosh
  29. --math.modf
  30. --math.pow
  31. --math.sinh
  32. --math.tanh
  33.  
  34. -- string
  35. format = string.format
  36. gmatch = string.gmatch
  37. gsub = string.gsub
  38. strbyte = string.byte
  39. strchar = string.char
  40. strfind = string.find
  41. strjoin = string.join
  42. strlen = string.len
  43. strlower = string.lower
  44. strmatch = string.match
  45. strrep = string.rep
  46. strrev = string.reverse
  47. strsplit = string.split
  48. strsub = string.sub
  49. strtrim = string.trim
  50. strupper = string.upper
  51.  
  52. --string.dump
  53. --string.gfind
  54. --string.rtgsub
  55.  
  56. -- table
  57. foreach = table.foreach
  58. foreachi = table.foreachi
  59. getn = table.getn
  60. sort = table.sort
  61. tinsert = table.insert
  62. tremove = table.remove
  63. wipe = table.wipe
  64.  
  65. --table.concat
  66. --table.maxn
  67. --table.removemulti
  68. --table.setn
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement