View Single Post
05-07-15, 07:52 PM   #10
SDPhantom
A Pyroguard Emberseer
 
SDPhantom's Avatar
AddOn Author - Click to view addons
Join Date: Jul 2006
Posts: 2,326
Internally, these two do the exact same operations in the Lua engine. The only difference is the later is in C code for both operations instead of popping in and out of the Lua code. The result is the second is slightly faster than the first.

Code:
not (var1 == var2)
Code:
var1 ~= var2
__________________
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