Calculates a number raised to a specified exponent.
Returns `TRUE` when two specified values differ and `FALSE` when they are the same. This function is equivalent to using the `<>` operator.
Calculates the product of two values. Functions similarly to the `*` operator.
Calculates the subtraction between two numbers, functioning identically to the `-` operator.
Returns `TRUE` if the first argument is less than or equal to the second argument, and `FALSE` otherwise. This is the same as using the `<=` operator.
Returns `TRUE` if the first argument is less than the second, and `FALSE` otherwise. Equivalent to the `<` operator.
Evaluates if a specific number falls within a designated range defined by two other numbers, either including or excluding the bounds.
Returns `TRUE` if the first argument is greater than or equal to the second argument, and returns `FALSE` otherwise. This is the same as using the `>=` operator.
Returns `TRUE` if the first argument is strictly greater than the second; otherwise, it returns `FALSE`. This is equivalent to using the `>` operator.
Returns TRUE if the two specified values are identical and FALSE otherwise. This function acts similarly to the = operator.