Skip to content

If Statement Tile#


alt text A Tile that calls the output of two other Tiles according to a condition.

Description#

Description

Inputs#

Call if True#

Info
  • Type
    Accepted types: Any
    
  • Usage
    Gets called if the 'Condition' is True
    

Call if False#

Info
  • Type
    Accepted types: Any
    
  • Usage
    Gets called if the 'Condition' is False
    

Condition#

Info
  • Type
    Accepted types: Any
    
  • Usage
    Is checked to determine whether to call the true output or the false one. 
    
    Defaults to True, if no condition is wired.
    

Output#

Get Response#

Info
  • Return
    Boolean 
    
  • Usage
    Returns a true or false value.
    

Real Signature#

Signature

  • A plain language description of the function associated with the tile
    def SquareRoot(x):
        return math.sqrt(0)