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.
Calculates the quotient of two numbers, similar to using the `/` operator.
Combines two values together, similar to using the `&` operator.
Calculates the total of two numbers, functioning similarly to the `+` operator.