Previous Page
|
Next Page
Operator Support in Decision Expressions
The following tables describe the operators that you can specify in expressions in decision gateways.
Comparison Operators
Operator
Operation
=
equal
==
equal
<
less than
<=
less than or equal
>
greater than
>=
greater than or equal
!=
not equal
Arithmetic Operators
Operator
Operation
+
addition
-
subtraction
*
multiplication
/
division
%
modulo
Conditional Operators
Operator
Operation
&&
, AND, and
conditional AND
||
, OR, or
conditional OR
Bitwise and Bit Shift Operators
Operator
Operation
<<
left shift
>>
right signed shift
>>>
right unsigned shift
&
bitwise AND
|
bitwise inclusive OR
^
bitwise exclusive OR
~
bitwise NOT
Unary Operators
Operator
Operation
+
unary plus
-
unary minus
++
increment value by 1
--
decrement value by 1
!
, NOT, not
logical NOT
Copyright © SAS Institute Inc. All rights reserved.
Previous Page
|
Next Page
|
Top of Page