====== iseq ======
===== Description =====
Test the equality of two variables.
===== Function prototype =====
bool iseq  
===== Arguments =====
^ Name ^ Type ^ Comment ^
|  //arg1//  |  variant  | The first variable to be compared. |
|  //arg2//  |  variant  | The second variable to be compared. |
If the type of //arg1// is not equal to that of //arg2//, the ordering of the arguments may change the result of calls to ''iseq''. See [[#Comparing variables of dissimilar types]].
===== Return value =====
True if the values are equal, and false otherwise. 
===== Example =====
// create an integer 'i', and set it to 20
int i
set i 20
// test whether the value of 'i' is 20, and echo result to log
echo 
... the output of which is written to the event log by [[plugins:general:zeoscript:reference:functions:echo]] as:
true
===== Comments =====
==== Comparing variables of dissimilar types ====
If the type of //arg2// is different to that of //arg1//, //arg2// will be typecast to the type of //arg1//. Thus, in certain circumstances, the the result of ''iseq'' will be different if the argument order is swapped, even if the values are unchanged.
For example, consider the case of comparing a float (//f// = 4.5) with an integer (//i// = 4):
float f
int i
set f 4.5
set i 4
echo  // 'f' goes first, so comparing as floats
echo  // 'i' goes first, so comparing as integers
The result of this code is:
false
true
In the first comparison in the above script (''echo ''), the first argument is a float (//f// = 4.5) so the second argument (//i// = 4) will be typecast to a float with the value of 4.0. Since 4.5 does not equal 4.0, this call to ''iseq'' returns false.
In the second comparison in the above script (''echo ''), the first argument is a integer (//i// = 4) so the second argument (//f// = 4.5) will be typecast to an integer with the value of 4. Since 4 //does// equal 4, this call to ''iseq'' returns true.
The moral of the story is: when comparing two variables, consider the type of the variables when deciding the argument order.
===== See also =====
  * [[plugins:general:zeoscript:reference:functions:isneq]]
  * [[plugins:general:zeoscript:reference:functions:isgt]]
  * [[plugins:general:zeoscript:reference:functions:islt]]
  * [[plugins:general:zeoscript:reference:functions:strcmp]]