Developing Apama Applications > EPL Reference > Expressions > Bitwise logical operators > Bitwise intersection (and)
Bitwise intersection (and)
The bitwise intersection operator and produces a result by comparing all 64 bits of its left and right operands, which must be expressions of type integer, one bit at a time. For each bit in the two operands, the corresponding bit in the result value is set to 1 if both operand bit values are 1 and set to 0 if either operand bit value is 0.
Example
The following table illustrates this using 64-bit binary values.
 
a := 42;
0000000000000000000000000000000000000000000000000000000000101010
 
b := 642;
0000000000000000000000000000000000000000000000000000001010000010
 
a and b
0000000000000000000000000000000000000000000000000000000000000010
Copyright © 2013-2015 Software AG, Darmstadt, Germany and/or Software AG USA Inc., Reston, VA, USA, and/or its subsidiaries and/or its affiliates and/or their licensors.
Use, reproduction, transfer, publication or disclosure is prohibited except as specifically provided for in your License Agreement with Software AG.