Evaluator Tile#
A Tile used to compare two expressions.
Description#
Description
- Calls the outputs wired to the Left Expression and Right Expression.
- Compares the two values according to the Operator.
- Returns a boolean value back to the If Statement.
- In order to compare two values, they must be of the same type.
Inputs#
Left Expression#
Info
- Type
Any - Usage
Wire to an expression that needs to be evaluated.
Right Expression#
Info
- Type
Any - Usage
Wire to an expression that needs to be evaluated.
Operator#
Info
- Type
Any - Usage
Wire to Relational/Logical Operator.
Output#
Get Response#
Info
- Return
Boolean type - Usage
Returns true or false back to the If Statement.
Real Signature#
Signature
- A plain language description of the function associated with the tile
def SquareRoot(x): return math.sqrt(0)