Conditional
Returns the results of one function or the other based on the result of a condition (boolean function).
Arguments
Section titled “Arguments”| Condition | A Function that returns a boolean |
| If True | A Function whose result is returned if the Condition evaluates to true. Must be the same type as If False |
| If False | A Function whose result is returned if the Condition evaluates to false. Must be the same type as If True |
Return Type
Section titled “Return Type”Returns the contents of If True/If False.