An arithmetic operator function that returns the complement of expression. This function cannot be used interactively.
(!= expression-1 expression-2)
An arithmetic operator function that returns 1 if expression-1 is not equal to expression-2. This function cannot be used interactively.
(% expression-1 expression-2 ...)
An arithmetic operator function that returns the modulus of the first argument by the rest of its arguments. This function cannot be used interactively.
(& expression-1 expression-2 ...)
An arithmetic operator function that returns the result of logical-ANDing all its arguments together. This function cannot be used interactively.
(* expression-1 expression-2 ...)
An arithmetic operator function that returns the result of multiplying all its arguments together. This function is cannot be used interactively.
(+ expression-1 expression-2 ...)
An arithmetic operator function that returns the sum of all its arguments. This function cannot be used interactively.
(- expression-1 expression-2 ...)
An arithmetic operator function that returns the first argument minus the sum of the rest of the arguments. This function cannot be used interactively.
(/ expression-1 expression-2 ...)
An arithmetic operator function that returns the result of dividing its first argument by rest of the arguments. This function cannot be used interactively.
An arithmetic operator function that returns 1 if expression-1 is less than expression-2. This function cannot be used interactively.
(<< expression-1 expression-2 ...)
An arithmetic operator function that returns the result of shifting left its first argument by the number of places which is the sum of the rest of the arguments. This function cannot be used interactively.
(<= expression-1 expression-2)
An arithmetic operator function that returns 1 if expression-1 is less than or equal to expression-2. This function cannot be used interactively.
An arithmetic operator function that returns 1 if expression-1 is the same as expression-2. This function cannot be used interactively.
An arithmetic operator function that returns true if expression-1 is greater than expression-2. This function cannot be used interactively.
(>= expression-1 expression-2)
An arithmetic operator function that returns true if expression-1 is greater than or equal to expression-2. This function cannot be used interactively.
(>> expression-1 expression-2 ...)
An arithmetic operator function that returns the result of right-shifting its first argument by the number of places which is the sum of the rest of the arguments. This function cannot be used interactively.
An arithmetic operator function that returns all its arguments exclusive or'ed together. This function cannot be used interactively.
^X-prefix is the ^X command prefix keymap.
Returns the result of logical OR'ing all its arguments together.