Basic Boolean operations
The following basic boolean operations are available in boolean:

OR(merge) operation

Truth table for OR
A
B
(A OR B)
0
0
0
0
1
1
1
0
1
1
1
1
 

AND (Intersect) operation

Truth table Intersect
A
B
Intersect(A,B)
0
0
0
0
1
0
1
0
0
1
1
1
 

Exor operation

 Truth table for Exor
A
B
Exor (A,B)
0
0
0
0
1
1
1
0
1
1
1
0


Subtract operation

 Waarheidstabel voor Substract
A
B
Sub(A-B)
Sub(B-A)
0
0
0
0
0
1
0
1
1
0
1
0
1
1
0
0