Boolean equal

library operator
ID: 20b44163-6ec0-43df-a158-cbbda1d571f0
Emits true only if both booleans A and B are equal.
Takes two boolean values and emits true in case both values are true or both are false, and false otherwise.

Behavior

Test data showing the behavior of Boolean equal

True

It returns true if both inputs are true or both are false.

Input Output
{"a":true,"b":true} true
{"a":false,"b":false} true
False

It returns false if the inputs are not equal.

Input Output
{"a":true,"b":false} false
{"a":false,"b":true} false

Implementation

The implementation of Boolean equal makes use of the following 1 operators.

1
Evaluates an expression.