# Switch is on
[ 1, 1 ] >> Equal () >> Switch;
# Switch is off
[ 1, 0 ] >> Equal () >> Switch;
# Switch is on
[ 1, 0 ] >> Greater () >> Switch;
# Switch is off
[ 0, 1 ] >> Greater () >> Switch;
# Switch is off
[ 1, 1 ] >> Greater () >> Switch;
----
# Switch is on
[ 1, 0 ] >> GreaterOrEqual () >> Switch;
# Switch is off
[ 0, 1 ] >> GreaterOrEqual () >> Switch;
# Switch is on
[ 1, 1 ] >> GreaterOrEqual () >> Switch;
# Switch is on
[ 0, 1 ] >> Less () >> Switch;
# Switch is off
[ 1, 0 ] >> Less () >> Switch;
# Switch is off
[ 1, 1 ] >> Less () >> Switch;
# Switch is on
[ 0, 1 ] >> LessOrEqual () >> Switch;
# Switch is off
[ 1, 0 ] >> LessOrEqual () >> Switch;
# Switch is on
[ 1, 1 ] >> LessOrEqual () >> Switch;
# Switch is on
[ 0, 1 ] >> NotEqual () >> Switch;
# Switch is off
[ 1, 1 ] >> NotEqual () >> Switch;