View Single Post
09-30-16, 10:15 PM   #7
SDPhantom
A Pyroguard Emberseer
 
SDPhantom's Avatar
AddOn Author - Click to view addons
Join Date: Jul 2006
Posts: 2,326
Originally Posted by sticklord View Post
1: Put them in private table, so that it doesn't clutter the global namespace mostly. It also is quicker to lookup.
The lookup time is about the same if the global lookup was written correctly. An indexing operation on a local table is the same as an indexing operation on the global environment. However, as written, the global table is being indexed twice, once to retrieve itself at _G and again to access the variable given.
__________________
WoWInterface AddOns
"All I want is a pretty girl, a decent meal, and the right to shoot lightning at fools."
-Anders (Dragon Age: Origins - Awakening)
  Reply With Quote