=  Operator


(=  argument  [ argument ... ]] )

This function compares all argument(s) for equality.

Arguments

argument  any Lisp symbol (number, string, ...)

Return

T if all arguments are numerically equal, NIL otherwise

Example

(= 1 1.0)  T
(= "one" "two")  NIL
(= (type "aaa") 'STR)  T

Remarks

to compare ENAME symbols, use (equal) function



©  Bricsys NV. All rights reserved.