Difference between revisions of "Operator Reference"

Jump to navigation Jump to search
No change in size ,  04:11, 1 January 2013
→‎Comparison Operators: "Less-than <" means "compare if left is smaller than right" etc.
imported>JLundin
imported>TomBrightblade
(→‎Comparison Operators: "Less-than <" means "compare if left is smaller than right" etc.)
Line 128: Line 128:
*Equality (==) returns true if both expressions have equal values.
*Equality (==) returns true if both expressions have equal values.
*Inequality (!=) returns true if both expressions have inequal values.
*Inequality (!=) returns true if both expressions have inequal values.
*Less-than (<) returns true if the right expression's value is smaller then the left expression's value.
*Less-than (<) returns true if the left expression's value is smaller then the right expression's value.
*Greater-than (>) returns true if the right expression's value is larger then the left expression's value.
*Greater-than (>) returns true if the left expression's value is larger then the right expression's value.
*Less-than or equal to (<=) returns true if the right expression's value is smaller than or equal to the left expression's value.
*Less-than or equal to (<=) returns true if the left expression's value is smaller than or equal to the right expression's value.
*Greater-than or equal to (>=) returns true if the right expression's value is larger than or equal to the left expression's value.
*Greater-than or equal to (>=) returns true if the left expression's value is larger than or equal to the right expression's value.


Examples:
Examples:

Navigation menu