Skip to content

Relational Operators Tile#


alt text

A tile that contains a set of relational operators.

Description#

Description

Output#

Is Equal#

Info
  • Return
    The operator itself.
    
  • Description
    Compares two values to check if they are equals.
    
  • Usage
    Will return the operator used in the Evaluator/If statement Tile.
    

Is Not Equal#

Info
  • Return
    The operator itself.
    
  • Description

    It compares two values to check if they are not equals.
    

  • Usage

    It will return the operator used in the Evaluator/If statement Tile.
    

Is Less#

Info
  • Return
    The operator itself.
    
  • Description

    It compares two values to check if one is less than the other.
    

  • Usage

    It will return the operator used in the Evaluator/If statement Tile.
    

Is Greater#

Info
  • Return
    The operator itself.
    
  • Description

    It compares two values to check if one is greater than the other.
    

  • Usage

    It will return the operator used in the Evaluator/If statement Tile.
    

Is Smaller or Equal#

Info
  • Return
    The operator itself.
    
  • Description

    It compares two values to check if one is less or equal than the other.
    

  • Usage

    It will return the operator used in the Evaluator/If statement Tile.
    

Is Greater or Equal#

Info
  • Return
    The operator itself.
    
  • Description

    It compares two values to check if one is greater or equal than the other. 
    

  • Usage

    It will return the operator used in the Evaluator/If statement Tile.
    

Real Signature#

Signature

  • A plain language description of the function associated with the tile
    def arc_cos(x):
        return math.acos(x)