/=  Operator


(/=  argument  [ argument ... ]] )

This function compares all argument(s) for inequality.

Arguments

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

Return

T if any argument is different to any other, NIL otherwise when all are equal

Example

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

Remarks

to compare ENAME symbols, use (equal) function



©  Bricsys NV. All rights reserved.