Input | Two arguments of any type. |
Output | True if they are equal. False otherwise. |
Input | Two arguments of any type. |
Output | True if they are not equal. False otherwise. |
Input | Two numbers. |
Output | True if the first number is greater than the second number. False otherwise. |
Input | Two numbers. |
Output | True if the first number is less than the second number. False otherwise. |
Input | Two numbers. |
Output | True if the first number is greater than or equal to the second number. False otherwise. |
Input | Two numbers. |
Output | True if the first number is less than or equal to the second number. False otherwise. |
Input | Two numbers. |
Output | The sum of the numbers. |
Input | Two numbers. |
Output | The difference of the numbers. |
Input | One number. |
Output | The number negated. |
Input | Two numbers. |
Output | The product of the numbers. |
Input | Two numbers. |
Output | The division of the numbers. |
Input | Two numbers. |
Output | The remainder of the division of the numbers. |
Input | Two boolean arguments. |
Output | True if both arguments are true. False otherwise. |
Input | Two boolean arguments. |
Output | True if at least one argument is true. False otherwise. |
Input | One boolean argument. |
Output | True if the argument is false. False if the argument is true. |
Input | Two elements. |
Output | The concatenation of the two elements. |